aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-01-10 17:29:49 +0000
committerGravatar Chris Lovering <[email protected]>2022-01-10 17:29:49 +0000
commit0d956f5acd98414d9e9ba5736a9f442f19838f6a (patch)
tree15825476a506affe89e198d6a7c95d1aa1b26a94
parentMerge pull request #3 from python-discord/jb3/playbook-lint (diff)
Upload PR artifact as part of lint flow
This is so that it is available to other flows to parse, such as the status embed flow
Diffstat (limited to '')
-rw-r--r--.github/workflows/lint.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index ebcb757..49b05fc 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,5 +1,9 @@
name: Lint Playbook
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
on:
push:
branches: [ main ]
@@ -21,3 +25,25 @@ jobs:
playbook.yml
override-deps: |
ansible-lint==5.3.2
+
+ # Prepare the Pull Request Payload artifact. If this fails, we
+ # we fail silently using the `continue-on-error` option. It's
+ # nice if this succeeds, but if it fails for any reason, it
+ # does not mean that our lint checks failed.
+ - name: Prepare Pull Request Payload artifact
+ id: prepare-artifact
+ if: always() && github.event_name == 'pull_request'
+ continue-on-error: true
+ run: cat $GITHUB_EVENT_PATH | jq '.pull_request' > pull_request_payload.json
+
+ # This only makes sense if the previous step succeeded. To
+ # get the original outcome of the previous step before the
+ # `continue-on-error` conclusion is applied, we use the
+ # `.outcome` value. This step also fails silently.
+ - name: Upload the Pull Request Artifact
+ if: always() && steps.prepare-artifact.outcome == 'success'
+ continue-on-error: true
+ uses: actions/upload-artifact@v2
+ with:
+ name: pull-request-payload
+ path: pull_request_payload.json