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 812809d commit 28d2e3dCopy full SHA for 28d2e3d
.github/workflows/tryhackme-badge-action-workflow
@@ -8,13 +8,20 @@ on:
8
jobs:
9
update-badge:
10
runs-on: ubuntu-latest
11
+
12
steps:
13
- name: Checkout repository
14
uses: actions/checkout@v2
15
16
+ - name: Configure Git Identity
17
+ run: |
18
+ git config --global user.name "GitHub Actions Bot"
19
+ git config --global user.email "[email protected]"
20
21
- name: Fetch TryHackMe Badge
- uses: ./
22
+ uses: DhanushNehru/[email protected]
23
with:
24
image_path: './assets/tryhackme-badge.png'
- username: 'dhanushnehru'
- user_id: '1995656'
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ username: 'thm username'
26
+ user_id: 'github user.id'
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments