forked from egen/hashicorp-release-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub actions for immediate Concourse triggering
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Trigger Concourse 'git' resource | ||
on: [ push, workflow_dispatch ] | ||
jobs: | ||
trigger-resource-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger resource check | ||
uses: gstackio/trigger-concourse-resource-check-action@v1 | ||
with: | ||
concourse-url: https://ci.gstack.io | ||
concourse-team: gk-plat-devs | ||
concourse-pipeline: hashicorp-release-resource | ||
concourse-resource: git | ||
concourse-webhook-token: ${{ secrets.GK_CONCOURSE_WEBHOOK_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Trigger Concourse pull-request resource | ||
on: [ push, pull_request, workflow_dispatch ] | ||
jobs: | ||
trigger-resource-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger resource check | ||
uses: gstackio/trigger-concourse-resource-check-action@v1 | ||
with: | ||
concourse-url: https://ci.gstack.io | ||
concourse-team: gk-plat-devs | ||
concourse-pipeline: hashicorp-release-resource | ||
concourse-resource: git-pull-requests | ||
concourse-webhook-token: ${{ secrets.GK_CONCOURSE_WEBHOOK_TOKEN }} |