This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new bfd4d6f Check conditional output
bfd4d6f is described below
commit bfd4d6f2e163935f9cb8221363d519cfe883296d
Author: Sebb <[email protected]>
AuthorDate: Sat Mar 26 11:34:17 2022 +0000
Check conditional output
---
.github/workflows/testaction.yml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/.github/workflows/testaction.yml b/.github/workflows/testaction.yml
new file mode 100644
index 0000000..c45b155
--- /dev/null
+++ b/.github/workflows/testaction.yml
@@ -0,0 +1,24 @@
+name: test action
+
+on:
+ push:
+ paths:
+ - '**/testaction.yml'
+
+ workflow_dispatch:
+
+jobs:
+ test:
+ strategy:
+ fail-fast: true
+ matrix:
+ os: [ubuntu-20.04]
+ runs-on: ${{ matrix.os }}
+ steps:
+ - name: generate status
+ run: |
+ false
+ - name: report
+ if: always()
+ run: |
+ echo $ {{ job.status }}
\ No newline at end of file