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 e5ac799 commit 028cf20Copy full SHA for 028cf20
1 file changed
.github/workflows/fetch.yml
@@ -8,7 +8,7 @@ env:
8
UNSPLASH_COLLECTION_ID: ${{ vars.UNSPLASH_COLLECTION_ID }}
9
10
jobs:
11
- dist:
+ fetch:
12
runs-on: ubuntu-latest
13
permissions:
14
contents: write
@@ -24,4 +24,9 @@ jobs:
24
- name: Fetch
25
run: bash fetch.sh
26
- name: Commit and push
27
- run: git add -A && git commit -m "update images" && git push origin
+ run: |
28
+ git config --global user.email "${GITHUB_ACTOR}"
29
+ git config --global user.name "${GITHUB_ACTOR}@users.noreply.github.com"
30
+ git add -A
31
+ git commit -m "update images"
32
+ git push origin
0 commit comments