Skip to content

Commit fd75c89

Browse files
authored
Create traffic.yml
1 parent 2135269 commit fd75c89

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/traffic.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)