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 a636aeb commit b2b733eCopy full SHA for b2b733e
.github/workflows/generate-project-list.yml
@@ -17,6 +17,13 @@ jobs:
17
token: ${{ secrets.ACTION_TOKEN }}
18
persist-credentials: true
19
20
+ - name: Fetch latest changes
21
+ run: git fetch origin
22
+
23
+ - name: Merge changes
24
+ run: |
25
+ git merge origin/main || echo "No new changes to merge or merge conflict"
26
27
- name: Generate project list
28
run: |
29
exclude_dirs=(.github)
@@ -52,7 +59,7 @@ jobs:
52
59
- name: Commit project list
53
60
54
61
git config --global user.email "github-actions[bot]@users.noreply.github.com"
55
- git config --global user.name "project-maintainer[bot]"
62
+ git config --global user.name "github-actions[bot]"
56
63
git add PROJECTS.md
57
64
git commit -m "Update project list"
58
65
git push --force-with-lease
0 commit comments