feat: add slot for customizable run name display in ECCClientGa4ghWes… #142
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: Versioning packages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js 20.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.x | |
| - name: Get node version | |
| id: node | |
| run: | | |
| echo "::set-output name=version::$(node -v)" | |
| - name: Get node_modules cache | |
| uses: actions/cache@v4 | |
| id: node_modules | |
| with: | |
| path: | | |
| **/node_modules | |
| key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package.lock') }}-${{ steps.node.outputs.version }} | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Unset Git Hooks | |
| run: git config --unset core.hooksPath | |
| - name: Create Release Pull Request | |
| uses: changesets/action@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |