Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Aug 19, 2024
1 parent f2d5729 commit eb952cf
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ on:
default: true

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Used for GitHub CLI authentication
GITHUB_TOKEN: ${{ github.token }} # Used for GitHub CLI authentication

permissions:
contents: read # to checkout the repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/Workflow-Test-Default-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ permissions:
pull-requests: write
statuses: write

env:
GITHUB_TOKEN: ${{ github.token }}

jobs:
WorkflowTestCIDefault:
uses: ./.github/workflows/CI.yml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/Workflow-Test-Default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ permissions:
pages: write
id-token: write

env:
GITHUB_TOKEN: ${{ github.token }}

jobs:
WorkflowTestDefault:
uses: ./.github/workflows/workflow.yml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/Workflow-Test-WithManifest-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ permissions:
pull-requests: write
statuses: write

env:
GITHUB_TOKEN: ${{ github.token }}

jobs:
WorkflowTestCIWithManifest:
uses: ./.github/workflows/CI.yml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/Workflow-Test-WithManifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ permissions:
pages: write
id-token: write

env:
GITHUB_TOKEN: ${{ github.token }}

jobs:
WorkflowTestWithManifest:
uses: ./.github/workflows/workflow.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ on:
default: true

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Used for GitHub CLI authentication
GITHUB_TOKEN: ${{ github.token }} # Used for GitHub CLI authentication

permissions:
contents: write # to checkout the repo and create releases on the repo
Expand Down

0 comments on commit eb952cf

Please sign in to comment.