diff options
| author | seth <[email protected]> | 2023-07-10 22:30:20 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-10 22:30:40 -0400 |
| commit | 35e312bfb41145fdcafe43ffe52f6808c231a360 (patch) | |
| tree | c70d8f444f66bcea3be94c8843a8ad2f7de0fb1c /.github/workflows/update-inputs.yaml | |
| parent | c7fe8ea208dfa933ff1870fb3c652617a7254908 (diff) | |
actions: only use github token for flake-update
Diffstat (limited to '.github/workflows/update-inputs.yaml')
| -rw-r--r-- | .github/workflows/update-inputs.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/update-inputs.yaml b/.github/workflows/update-inputs.yaml index 0ac81a5..48535a7 100644 --- a/.github/workflows/update-inputs.yaml +++ b/.github/workflows/update-inputs.yaml @@ -6,6 +6,10 @@ on: - cron: "0 0 * * 6" workflow_dispatch: +permissions: + contents: write + pull-requests: write + jobs: update-lock: runs-on: ubuntu-latest @@ -16,5 +20,4 @@ jobs: - uses: ./.github/actions/flake-update with: commit-msg: "flake: update all inputs" - github-token: ${{ secrets.GITHUB_TOKEN }} - update-token: ${{ secrets.FLAKE_UPDATE }} + github-token: ${{ github.token }} |
