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 c42d5c8 commit 58d4247Copy full SHA for 58d4247
.github/workflows/receive_install.yml
@@ -0,0 +1,25 @@
1
+name: Receive install event
2
+on:
3
+ repository_dispatch:
4
+ types: [install]
5
+
6
+jobs:
7
+ receive_install:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Write payload to file
16
+ run: |
17
+ echo "Installed by ${{ github.event.client_payload.user }} on ${{ github.event.client_payload.install_time }}" >> README.md
18
19
+ - name: Commit and push
20
21
+ git config --local user.email "app@commit.email"
22
+ git config --local user.name "commit.email"
23
+ git add README.md
24
+ git commit -m "Post-install test commit"
25
+ git push
.github/workflows/task_inspector.yml
0 commit comments