Skip to content

Commit 3c80b00

Browse files
neilnaveenfacebook-github-bot
authored andcommitted
chore: Set permissions for GitHub actions
Summary: 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 <42328488+neilnaveen@users.noreply.github.com> X-link: facebook/proxygen#413 Reviewed By: hanidamlaj Differential Revision: D62986647 Pulled By: afrind fbshipit-source-id: 4c44009112169d50e735407caeb29be2e28a832a
1 parent 2802ec9 commit 3c80b00

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/TagIt.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ on:
66

77
name: TagIt
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
build:
14+
permissions:
15+
contents: write # for actions/create-release to create a release
1116
name: Release
1217
runs-on: ubuntu-latest
1318
steps:

0 commit comments

Comments
 (0)