fix: use github-scripts for cross-platform compatibility, improve working-directory behavior #329
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: Internal - Pull request - Continuous Integration | |
| on: | |
| merge_group: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| statuses: write | |
| # FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659 | |
| id-token: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/__shared-ci.yml | |
| secrets: inherit |