Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ jobs:
name: Validate Pull Request
runs-on: ubuntu-latest

permissions:
contents: write
packages: write
attestations: write
id-token: write

permissions: "write-all"
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -58,4 +53,16 @@ jobs:
commit-message: "Updating tracked Git version in source code"
branch: ${{ github.head_ref }}
github-token: ${{ secrets.GITHUB_TOKEN }}
commit-all: 'true'
commit-all: 'true'
use-pull-request: 'true'

- name: Outputs
shell: bash
env:
SHA: ${{ steps.commit.outputs.sha }}
BRANCH: ${{ steps.commit.outputs.branch }}
PR_NUMBER: ${{ steps.commit.outputs.pr-number }}
run: |
echo $SHA
echo $BRANCH
echo $PR_NUMBER
Loading