push
Some checks failed
CI/CD Pipeline / test (push) Failing after 57s
Update CI/CD Pipeline / update (push) Successful in 1m14s

This commit is contained in:
philipp 2024-10-17 18:59:36 +02:00
parent 035f72c264
commit ef90fd8f42

View File

@ -2,7 +2,7 @@ name: Update CI/CD Pipeline
on: on:
schedule: schedule:
- cron: '52 * * * *' # Runs the pipeline at the 39th minute of every hour - cron: '0 * * * *' # Runs the pipeline at the 39th minute of every hour
jobs: jobs:
update: update:
@ -35,9 +35,10 @@ jobs:
- name: Create Pull Request - name: Create Pull Request
if: success() if: success()
run: | run: |
echo "https://git.hofer.link/api/v1/repos/{owner}/{repo}/pulls"
if [ -n "$(git log origin/main..HEAD)" ]; then if [ -n "$(git log origin/main..HEAD)" ]; then
curl -X POST "https://git.hofer.link/api/v1/repos/{owner}/{repo}/pulls" \ curl -X POST "https://git.hofer.link/api/v1/repos/{owner}/{repo}/pulls" \
-H "Authorization: token $GITEA_TOKEN" \ -H "Authorization: token $GITEATOKEN" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d '{"title":"Update laws","head":"update-branch","base":"main","body":"Automated update of laws."}' -d '{"title":"Update laws","head":"update-branch","base":"main","body":"Automated update of laws."}'
else else