We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b966a57 commit 922c8b2Copy full SHA for 922c8b2
1 file changed
.github/workflows/validate_branch_names.yml
@@ -0,0 +1,12 @@
1
+name: Run on Branch Creation
2
+
3
+on:
4
+ create
5
6
+jobs:
7
+ run-on-branch-create:
8
+ if: startsWith(github.ref, 'refs/heads/')
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Announce branch creation
12
+ run: echo "Branch '${{ github.ref_name }}' was created by ${{ github.actor }}"
0 commit comments