mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 17:53:59 -04:00
* chore: Set permissions for GitHub actions Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: neilnaveen <[email protected]> * Update permissions for newly added actions * Remove deleted actions Co-authored-by: neilnaveen <[email protected]>
17 lines
373 B
YAML
17 lines
373 B
YAML
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add pull-requests to request queue
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@main
|
|
with:
|
|
project-url: https://github.com/orgs/hashicorp/projects/105
|
|
github-token: ${{ secrets.PACKER_PROJ_BOARD_TOKEN }}
|