-
Notifications
You must be signed in to change notification settings - Fork 3
78 lines (74 loc) · 2.71 KB
/
update_deps.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
on:
workflow_dispatch:
schedule:
- cron: "0 05 * * SUN"
jobs:
sc4s:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: ./sc4s_sync.sh
- uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.SA_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.SA_GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Create PR with new version
run: |
git config --global user.email ${{ secrets.GH_USER_EMAIL }}
git config --global user.name ${{ secrets.GH_USER_ADMIN }}
git config --global commit.gpgsign true
BRANCH_NAME="fix/update-sc4s-version"
( git checkout "$BRANCH_NAME" && git checkout main && git branch -D "$BRANCH_NAME" ) || true
git checkout -B "$BRANCH_NAME"
git add . || exit 1
git commit -am "fix: update SC4S version" || true
git push -f --set-upstream origin "$BRANCH_NAME" || true
sleep 10s
gh pr create \
--title "fix: bump SC4S version" --fill --head "$BRANCH_NAME" || true
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_ADMIN }}
splunk:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: |
pip install -r requirements.txt
python splunk_matrix_update.py
echo $splunk_version
- uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.SA_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.SA_GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Create PR with new version
run: |
git config --global user.email ${{ secrets.GH_USER_EMAIL }}
git config --global user.name ${{ secrets.GH_USER_ADMIN }}
git config --global commit.gpgsign true
BRANCH_NAME="fix/update-splunk-version"
( git checkout "$BRANCH_NAME" && git checkout main && git branch -D "$BRANCH_NAME" ) || true
git checkout -B "$BRANCH_NAME"
git add . || exit 1
git commit -am "fix: update Splunk version" || true
git push -f --set-upstream origin "$BRANCH_NAME" || true
sleep 10s
gh pr create \
--title "fix: bump Splunk version" --fill --head "$BRANCH_NAME" || true
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_ADMIN }}