Skip to content

Commit

Permalink
Create github-branch-dump.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto authored May 21, 2024
1 parent 958dd5b commit 7e59bef
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/github-branch-dump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: GitHub Branch Dump

on:
push:
branches:
- develop/yuta/**
workflow_dispatch:

jobs:
branch-dump:
runs-on: ubuntu-latest
steps:
- name: Dump branch
run: |
BRANCH=${{ github.ref }}
RESULT=$(echo "$BRANCH" | cut -d'/' -f4)
echo "Name: $RESULT"

0 comments on commit 7e59bef

Please sign in to comment.