Skip to content

Commit f2d34cc

Browse files
add script
1 parent d1fe66d commit f2d34cc

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/script.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: handle some stuff
2+
3+
on:
4+
schedule:
5+
- cron: '0 8 * * *' # Runs daily at 08:00 UTC
6+
7+
jobs:
8+
script:
9+
name: Run Script
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Configure Git
19+
run: |
20+
git config user.name "${{ secrets.GIT_USER_NAME }}"
21+
git config user.email "${{ secrets.GIT_USER_EMAIL }}"
22+
23+
- name: Run Script Action
24+
uses: AhmedAbdoElhawary/private-algo-action@main
25+
with:
26+
source-branch: feature/sorting
27+
target-branch: develop

0 commit comments

Comments
 (0)