-
Notifications
You must be signed in to change notification settings - Fork 12
83 lines (70 loc) · 2.41 KB
/
sync-extensions.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
79
80
81
82
83
name: Sync and Release Extensions
on:
push:
branches:
- main
paths:
- manifest.json
env:
ACTIONS_RUNNER_DEBUG: false
CI_COMMIT_MESSAGE: CI Build Artifacts
GH_TOKEN: ${{ github.token }}
jobs:
sync:
if: github.repository_owner == 'rancher'
name: Sync and Release Extensions
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Setup Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1
- name: Run sync script
shell: bash
id: sync_script
run: |
chmod +x ./scripts/sync
./scripts/sync
- name: Generate branch name based on date and time
run: echo "NOW=$(date +'%Y-%m-%d-%H-%M-%S')" >> $GITHUB_ENV
- name: Commit Changes and push to a branch
run: |
git checkout -b sync-${{ env.NOW }}
git add ./{assets,charts,extensions,icons,index.yaml}
git commit -a -m "Sync extensions ${{ env.NOW }}"
git push origin sync-${{ env.NOW }}
- name: Create Pull Request
run: |
# Create the PR using the GitHub CLI
pr_number=$(gh pr create \
--title "Create PR for extension sync: ${{ env.NOW }}" \
--body "This PR was automatically created by a GitHub Action." \
--base main \
--head sync-${{ env.NOW }} \
--fill \
--repo ${{ github.repository }} | awk '{print $NF}') # Get the PR URL and Extract the last element (the PR number)
# Check if pr_number is empty (creation failed)
if [ -z "$pr_number" ]; then
echo "Failed to create PR."
exit 1
fi
# Store the PR number as an output
echo "PR_NUMBER=$pr_number" >> $GITHUB_ENV
- name: Merge Pull Request when approved
run: |
# Merge the PR using the GitHub CLI
gh pr merge ${{ env.PR_NUMBER }} --auto --delete-branch --merge --repo ${{ github.repository }}
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: ./charts/*
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
CR_SKIP_EXISTING: true