add release test
Some checks failed
Scheduled Fake Commits / create_scheduled_commits (push) Failing after 20s

This commit is contained in:
Tanishq Dubey 2025-05-10 08:15:08 -04:00
parent 27ab9f89fa
commit 7fabcc7fd5
No known key found for this signature in database
GPG Key ID: CFC1931B84DFC3F9

View File

@ -21,6 +21,7 @@ jobs:
- name: Set up Git config
# Configure Git user details globally for the runner
run: |
echo "setting up git config"
git config --global user.name "Gitea Actions Bot"
git config --global user.email "actions-bot@your-gitea-instance.com" # Replace with a suitable email
@ -52,6 +53,7 @@ jobs:
TARGET_BRANCH: main # The branch to commit to
run: |
echo "reading author's list"
# Read authors into a Bash array
IFS=$'\n' read -r -d '' -a authors <<< "$AUTHOR_LIST"