refactor: make taxcodeid mandatory for charges #19890
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: PR Checks | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| migration-atlas-sum: | |
| name: Migration atlas.sum append-only | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Run atlas.sum check unit tests | |
| run: python3 -m unittest discover -s .github/tools/migrate -p 'test_*.py' | |
| - name: Check atlas.sum is append-only | |
| # base.sha is always a hex SHA, but route it via env for consistency | |
| # with the repo-wide rule of never interpolating ${{ }} into run:. | |
| run: python3 .github/tools/migrate/check_atlas_sum_append_only.py "$BASE_SHA" | |
| env: | |
| BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| release-label: | |
| name: Release note label | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| steps: | |
| - name: Check minimum labels | |
| uses: mheap/github-action-required-labels@0ac283b4e65c1fb28ce6079dea5546ceca98ccbe # v5.5 | |
| with: | |
| mode: minimum | |
| count: 1 | |
| labels: | | |
| release-note/ignore | |
| kind/feature | |
| release-note/feature | |
| kind/bug | |
| release-note/bug-fix | |
| release-note/breaking-change | |
| release-note/deprecation | |
| area/dependencies | |
| release-note/dependency-update | |
| kind/refactor | |
| release-note/misc | |
| kind/documentation |