generated from bcgov/quickstart-openshift
-
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.
- Loading branch information
1 parent
18c1b42
commit 286ea7f
Showing
1 changed file
with
21 additions
and
15 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 |
---|---|---|
|
@@ -10,6 +10,23 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
pr-description-add: | ||
name: PR Description Add | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
pull-requests: write | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: bcgov-nr/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
add_markdown: | | ||
--- | ||
Thanks for the PR! | ||
Any new images should be viewable with [our repo packages](https://github.com/orgs/bcgov/packages?repo_name=nr-containers). :) | ||
scrub: | ||
name: Scrub for changed Dockerfiles | ||
runs-on: ubuntu-22.04 | ||
|
@@ -69,21 +86,10 @@ jobs: | |
package: ${{ matrix.package }} | ||
tag: ${{ steps.tag.outputs.full_tag }} | ||
|
||
pr-description-add: | ||
name: PR Description Add | ||
results: | ||
name: PR Results | ||
needs: [builds] | ||
if: always() && (! failure()) | ||
if: always() && (!failure()) && (!cancelled()) | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
pull-requests: write | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: bcgov-nr/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
add_markdown: | | ||
--- | ||
Thanks for the PR! | ||
Any new images should be viewable with [our repo packages](https://github.com/orgs/bcgov/packages?repo_name=nr-containers). :) | ||
- run: echo "Success!" |