Merged PR #22
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
# This workflow runs any time `master` is updated. | |
# | |
# In practice, due to branch protection rules, this should only happen when a PR | |
# is merged. | |
# | |
# In summary, this workflow: | |
# 1. Runs the `test.yml` workflow to check formatting, Credo, tests, etc. | |
# 2. Builds the app | |
name: Merged PR | |
run-name: Merged PR | |
on: | |
push: | |
branches: ['master'] | |
# Don't rudundantly run checks when merging release-please PR | |
paths-ignore: | |
- 'CHANGELOG.md' | |
jobs: | |
test: | |
name: Test | |
secrets: inherit | |
uses: ./.github/workflows/test.yml | |
permissions: | |
contents: 'read' | |
id-token: 'write' |