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 2e2775b commit fa75a40Copy full SHA for fa75a40
.github/workflows/cron-tasks.yml
@@ -7,7 +7,6 @@ on:
7
push:
8
branches:
9
- main
10
- workflow_dispatch: # This should be removed once the workflow is tested and working
11
12
jobs:
13
update_generated_files:
@@ -33,7 +32,7 @@ jobs:
33
32
- uses: actions/checkout@v4
34
with:
35
# don't checkout a detatched HEAD
36
- ref: main # TODO: change to {{ github.head_ref }}
+ ref: ${{ github.head_ref }}
37
38
# this is important so git log can pick up on
39
# the whole history to generate the list of AUTHORS
@@ -91,5 +90,5 @@ jobs:
91
90
92
- name: Commit and push
93
run: |
94
- git commit --no-allow-empty -m "chore: update auto-generated files" || true
+ git commit --no-allow-empty -m "chore: update auto-generated files [skip actions]" || true
95
git push
0 commit comments