We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef1b32 commit 67fc8a1Copy full SHA for 67fc8a1
.github/workflows/activate.yml
@@ -0,0 +1,21 @@
1
+# Simple first task to activate GitHub actions.
2
+# This won't run until is merged, but future actions will
3
+# run on PRs, so we can see we don't break things in more
4
+# complex actions added later, like real builds.
5
+#
6
+# TODO: Remove this once another action exists
7
+name: Activate
8
+
9
+on:
10
+ push:
11
+ branches: master
12
+ pull_request:
13
14
15
+jobs:
16
+ activate:
17
+ name: Activate actions
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Activate
21
+ run: echo "GitHub actions ok"
0 commit comments