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 ebe64e9 commit c3e7822Copy full SHA for c3e7822
.github/workflows/update_pipeline_lib_branch.yml
@@ -0,0 +1,21 @@
1
+name: Set Pipeline Library Branch
2
+# This workflow is triggered on pushes to the master branch of the repository.
3
+on:
4
+ push:
5
+
6
+jobs:
7
+ update_pipeline_lib_branch:
8
+ name: Update Pipeline Library Branch
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ with:
13
+ ref: ${{ github.head_ref }}
14
+ - uses: daos-stack/update-pipeline-lib-action@v1
15
+ - uses: stefanzweifel/git-auto-commit-action@v4
16
17
+ commit_message: Update Pipeline library branch
18
+ commit_options: '--signoff'
19
+ id: update_pipeline_lib_branch
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments