We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
GITHUB_ACTOR
1 parent 3a1724d commit a517d25Copy full SHA for a517d25
.github/workflows/directory_workflow.yml
@@ -2,6 +2,7 @@ name: build_directory_md
2
on:
3
push:
4
branches: [master]
5
+ workflow_dispatch:
6
7
jobs:
8
MainSequence:
@@ -15,7 +16,8 @@ jobs:
15
16
- name: Setup Git Specs
17
run: |
18
git config --global user.name github-actions
- git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com.'
19
+ git config --global user.email "[email protected]"
20
+ git config --global --list
21
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com./$GITHUB_REPOSITORY
22
- name: Update DIRECTORY.md
23
0 commit comments