ci: grant contents:write and issues:write permissions for semantic-release #64
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: Public APIs | |
| on: | |
| # Triggers the workflow on pull request events | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| name: Check | |
| environment: 'public-api' | |
| steps: | |
| - uses: actions/setup-node@v3 | |
| - uses: actions/checkout@v3 | |
| - name: Install Deps | |
| run: npm ci --ignore-scripts | |
| - name: Build | |
| id: build | |
| continue-on-error: true | |
| run: npx nx run ng-dynamic-component:build | |
| - name: Update APIs | |
| if: ${{ steps.build.outcome == 'failure' }} | |
| run: npx nx run ng-dynamic-component:build:local | |
| - name: Commit API changes | |
| if: ${{ steps.build.outcome == 'failure' }} | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| add: 'goldens/*' | |
| default_author: github_actions | |
| message: 'chore(api): changes of Public API goldens' |