Public www update: Sat Sep 13 00:59:20 UTC 2025. #36
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create build check | |
| on: | |
| push: | |
| tags: | |
| - '15.0**' | |
| jobs: | |
| create-build-check-issue: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-24.04 | |
| permissions: write-all | |
| if: contains('["SlackBuildsOrg/slackbuilds"]', github.repository) | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| show-progress: false | |
| - name: Create or update release issue | |
| id: create-or-update-issue | |
| uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1 | |
| with: | |
| title: '${{ github.ref_name }}: Build check' | |
| content-filepath: .github/BUILD_CHECK_ISSUE.md | |