chore(deps, cpp): update github.vscode-pull-request-github in devcontainer.json #838
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: Pull Request Report | |
| on: | |
| pull_request: | |
| types: [closed] | |
| permissions: {} | |
| jobs: | |
| add-pr-report: | |
| name: 📊 Add PR Report | |
| permissions: | |
| contents: read | |
| checks: read # is needed by philips-software/pull-request-report-action to fetch check run information | |
| pull-requests: write # is needed by philips-software/pull-request-report-action to post the report as a comment on the PR | |
| repository-projects: read # is needed by philips-software/pull-request-report-action to fetch project information | |
| actions: read # is needed by philips-software/pull-request-report-action to fetch workflow run information | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| disable-sudo-and-containers: true | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: philips-software/pull-request-report-action@39e2f082490099021474c109cb207953221a8e47 # v0.1.5 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |