Skip to content

Commit

Permalink
Updated board release workflow for test purposes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
StrahinjaJacimovic committed Sep 10, 2024
1 parent c2e4490 commit 21268d1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/boardRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ jobs:
echo "Pull request number is $PR_NUMBER"
echo "::set-output name=pull_request_number::$PR_NUMBER"
# Automatically approve PR
- name: Approve Pull Request
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.PAT_TOKEN }}" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/${{ github.repository }}/pulls/${{ steps.create_pr.outputs.pull_request_number }}/reviews \
-d '{"event":"APPROVE"}'
# Automatically merge the pull request using the GitHub API
- name: Automatically Merge Pull Request
run: |
Expand Down Expand Up @@ -89,6 +98,7 @@ jobs:
pip install py7zr
pip install chardet
pip install elasticsearch==7.13.4
pip install packaging
sudo apt-get install p7zip-full
- name: Update Changelogs
Expand Down

0 comments on commit 21268d1

Please sign in to comment.