Comparing changes

Choose two branches to see what's changed or to start a new pull request.

base: branch
Choose a base ref
branch trunk default
compare: trunk
Choose a head ref
branch trunk default
Create pull request
Able to merge. These branches can be automatically merged.
4 commits 1 file changed 1 contributor

Commits on trunk

.shithub/workflows/smoke.ymladded
@@ -0,0 +1,16 @@
1
+name: Scratch smoke
2
+
3
+on:
4
+  push:
5
+    branches: [trunk]
6
+  workflow_dispatch:
7
+
8
+jobs:
9
+  green:
10
+    runs-on: ubuntu-latest
11
+    steps:
12
+      - uses: actions/checkout@v4
13
+      - name: Verify checkout
14
+        run: |
15
+          test -f README.md
16
+          printf 'shithub actions smoke passed\n'