Bump guibranco/github-file-reader-action-v2 from 2.2.896 to 2.2.899 in the actions-minor group #278
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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| test-action: | |
| name: GitHub Actions Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Test Local Action | |
| id: test-action | |
| uses: ./ | |
| with: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| - name: Print Output | |
| id: output | |
| run: echo "${{ steps.test-action.outputs.leaked-secrets }}" | |
| create-release: | |
| name: Create release | |
| needs: test-action | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install GitVersion | |
| uses: gittools/actions/gitversion/setup@v4.2.0 | |
| with: | |
| versionSpec: '6.x' | |
| - name: Determine Version | |
| id: gitversion | |
| uses: gittools/actions/gitversion/execute@v4.2.0 | |
| - name: Create Release (tag) | |
| uses: ncipollo/release-action@v1.20.0 | |
| with: | |
| allowUpdates: false | |
| skipIfReleaseExists: true | |
| draft: false | |
| makeLatest: false | |
| tag: v${{ steps.gitversion.outputs.semVer }} | |
| name: Release v${{ steps.gitversion.outputs.semVer }} | |
| generateReleaseNotes: true | |
| body: | |
| Release ${{ steps.gitversion.outputs.semVer }} of ${{ github.event.repository.name }} | |
| - name: Create Release (latest) | |
| uses: ncipollo/release-action@v1.20.0 | |
| with: | |
| allowUpdates: true | |
| skipIfReleaseExists: false | |
| draft: false | |
| makeLatest: true | |
| tag: latest | |
| name: Release v${{ steps.gitversion.outputs.semVer }} | |
| generateReleaseNotes: true | |
| body: | |
| Release ${{ steps.gitversion.outputs.semVer }} of ${{ github.event.repository.name }} |