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 2135269 commit fd75c89Copy full SHA for fd75c89
.github/workflows/traffic.yml
@@ -0,0 +1,24 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: traffic
4
5
+# Controls when the action will run.
6
+on:
7
+ schedule:
8
+ - cron: "* 23 * * *"
9
+ # Allows you to run this workflow manually from the Actions tab
10
+ workflow_dispatch:
11
12
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13
+jobs:
14
+ j1:
15
+ name: GitHitJob
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: GitHits-Action
19
+ id: gh
20
+ uses: kausko/GitHits@v1
21
+ with:
22
+ pat: ${{ secrets.PAT }}
23
+ - name: Output
24
+ run: echo ${{ steps.gh.outputs.status }}
0 commit comments