-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (43 loc) · 1.65 KB
/
get_discussions.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
name: run get_discussions.py
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python manage_discussions/get_discussions.py
- name: Create new branch with timestamp
run: |
BRANCH="update-blips-branch-$(date +%s)"
git checkout -b "$BRANCH"
echo "::set-output name=branch::$BRANCH"
- name: Commit changes (if any)
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add tech_radar/blips.json
git commit -m "Auto-update blips.json" || echo "No changes to commit"
- name: Push changes to new branch
run: |
git push origin $(echo ${{ steps.create_new_branch.outputs.branch }}) --force
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
branch: ${{ steps.create_new_branch.outputs.branch }} # The new branch created earlier
title: 'Auto-update blips.json'
body: 'This PR updates the blips.json file automatically.'
base: 'main' # Change this if your default branch is different (e.g., master)
labels: 'auto-update'