updater #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: updater | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 12 * * 5' # every Friday at 07:00 Colombia Time | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate a token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID_ADMIN_GITHUB }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY_ADMIN_GITHUB }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
token: ${{ steps.generate_token.outputs.token }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Check for updates | |
run: ./gradlew internalTask --action UPDATE_DEPENDENCIES | |
- name: Check for changes | |
id: git_changes | |
run: | | |
git diff --name-only | |
if [[ $(git diff --name-only) ]]; then | |
echo "Changes detected!" | |
echo "HAS_CHANGES=true" >> $GITHUB_ENV | |
else | |
echo "No changes detected!" | |
echo "HAS_CHANGES=false" >> $GITHUB_ENV | |
fi | |
- name: Create Pull Request | |
if: env.HAS_CHANGES == 'true' | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
committer: Dependencies Bot <release-bot@bancolombia.com.co> | |
commit-message: 'fix(deps): update dependencies' | |
title: 'fix(deps): update dependencies' | |
body: 'This PR updates dependencies to latest versions' | |
branch: 'feature/autoupdate-deps' | |
base: 'master' | |
labels: 'dependencies' | |
reviewers: 'juancgalvis' |