File size: 781 Bytes
2ef1c85
1237c34
 
 
 
 
 
2ef1c85
1237c34
 
2ef1c85
 
 
 
1237c34
2ef1c85
c667db8
1237c34
2ef1c85
1237c34
 
2ef1c85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: air-quality-daily

on:
  schedule:
    - cron: "*/5 * * * *" # Run every 5 minutes (minimum allowed)

jobs:
  schedule_pipelines:
    runs-on: ubuntu-latest

    permissions:
      pages: write
      contents: write

    steps:
      - name: checkout repo content
        uses: actions/checkout@v4

      - name: Update dummy file
        run: echo "$(date)" >> dummy.txt

      - name: github pages publish
        uses: stefanzweifel/git-auto-commit-action@v5
        with:
          commit_message: "Updating dashboard"
          commit_options: '--no-verify --signoff'

          repository: .

          status_options: '--untracked-files=no'

          skip_dirty_check: true

          skip_fetch: true

          skip_checkout: true

          push_options: '--force'