Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/test-increased-wait-time.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
description: "The sha of the commit that triggered the workflow run"
required: false
type: "string"
permissions:
contents: read
statuses: write

jobs:
setup:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -46,7 +50,7 @@ jobs:
with:
repo: ${{ github.repository }}
sha: ${{ github.sha }}
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
status: success
context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-positive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
description: "The sha of the commit that triggered the workflow run"
required: false
type: "string"
permissions:
contents: read
statuses: write

jobs:
setup:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -47,7 +51,7 @@ jobs:
with:
repo: ${{ github.repository }}
sha: ${{ github.sha }}
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
status: success
context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test-wrong-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
description: "The sha of the commit that triggered the workflow run"
required: false
type: "string"
permissions:
contents: read
statuses: write

jobs:
setup:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -47,7 +51,7 @@ jobs:
with:
repo: ${{ github.repository }}
sha: ${{ github.sha }}
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
status: pending
context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app

Expand Down Expand Up @@ -90,6 +94,6 @@ jobs:
with:
repo: ${{ github.repository }}
sha: ${{ github.sha }}
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
status: success
context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ inputs:
description: "Commit status state wait for. Valid values 'success', 'error', 'failure', 'pending'"
default: "success"
runs:
using: "node20"
using: "node24"
main: "index.js"

Loading