fix(run-action): fix a bug that github_app_should_limit_repositories can't be excluded #772
Workflow file for this run
This file contains 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: test | |
on: pull_request | |
env: | |
AQUA_LOG_COLOR: always | |
GHALINT_LOG_COLOR: always | |
permissions: {} | |
jobs: | |
path-filter: | |
# Get changed files to filter jobs | |
outputs: | |
update-aqua-checksums: ${{steps.changes.outputs.update-aqua-checksums}} | |
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}} | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
update-aqua-checksums: | |
- aqua.yaml | |
- aqua/*.yaml | |
- aqua-checksums.json | |
- .github/workflows/test.yaml | |
renovate-config-validator: | |
- renovate.json5 | |
update-aqua-checksums: | |
# Update aqua-checksums.json and push a commit | |
needs: path-filter | |
if: needs.path-filter.outputs.update-aqua-checksums == 'true' | |
uses: aquaproj/update-checksum-workflow/.github/workflows/update-checksum.yaml@75c72cdc372a43dd1b1ad0458748f5d6bfeac7b9 # v1.0.1 | |
permissions: | |
contents: read | |
with: | |
aqua_version: v2.29.0 | |
prune: true | |
secrets: | |
gh_app_id: ${{secrets.APP_ID}} | |
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}} | |
renovate-config-validator: | |
# Validate Renovate Configuration by renovate-config-validator. | |
uses: suzuki-shunsuke/renovate-config-validator-workflow/.github/workflows/validate.yaml@4a378742d05b4e67aae34039d7c779ac913cd79d # v0.2.3 | |
needs: path-filter | |
if: needs.path-filter.outputs.renovate-config-validator == 'true' | |
permissions: | |
contents: read | |
enable-auto-merge: | |
uses: ./.github/workflows/wc-enable-auto-merge.yaml | |
permissions: {} | |
needs: | |
- status-check | |
secrets: | |
gh_app_id: ${{secrets.APP_ID}} | |
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}} | |
# "! failure()" is required. success() returns false if dependent jobs are skipped. https://github.com/community/community/discussions/45058 | |
# By default success() is used so we have to override success() by "! failure()" | |
if: | | |
! failure() && ! cancelled() && github.event.pull_request.user.login == 'renovate[bot]' && contains(github.event.pull_request.body, ' **Automerge**: Enabled.') | |
status-check: | |
# This job is used for main branch's branch protection rule's status check. | |
# If all dependent jobs succeed or are skipped this job succeeds. | |
runs-on: ubuntu-latest | |
needs: | |
- update-aqua-checksums | |
- test | |
- renovate-config-validator | |
- ghalint | |
permissions: {} | |
if: failure() | |
steps: | |
- run: exit 1 | |
test: | |
uses: suzuki-shunsuke/go-test-workflow/.github/workflows/test.yaml@3191fc67e2aa6426e4bccd25be69b9d80b47a007 # v1.0.1 | |
with: | |
aqua_version: v2.29.0 | |
go-version: 1.22.4 | |
permissions: | |
pull-requests: write | |
contents: read | |
ghalint: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- run: go run ./cmd/ghalint run |