fix: default the AuthKit issuer to accounts.mukoko.com, not the dead … #355
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
| # Thin caller for the org's reusable lint workflow. | |
| # | |
| # The five jobs (actionlint, JSON validity, prettier, markdownlint, | |
| # yamllint) are defined ONCE in nyuchi/.github/.github/workflows/ | |
| # reusable-lint.yml and consumed identically by every repo in the | |
| # org. Branch protection requires status from each — adding this | |
| # caller is what makes the `lint / actionlint`, `lint / JSON validity`, | |
| # `lint / prettier`, `lint / markdownlint`, and `lint / yamllint` | |
| # checks report status on each PR. | |
| # | |
| # Do not inline the jobs here — drift between repos defeats the point. | |
| # If a tool version or config needs to change, do it in the reusable. | |
| name: lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| uses: nyuchi/.github/.github/workflows/reusable-lint.yml@main |