Bump repository activity #842
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: Bump repository activity | |
on: | |
schedule: | |
- cron: '20 3 * * *' # sync-with-template: adjust | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/bump-repository-activity.yml' | |
workflow_dispatch: { } | |
env: | |
PUSH_BACK_TOKEN: ${{secrets.PUSH_BACK_TOKEN}} | |
jobs: | |
bump-repository-activity: | |
name: Bump repository activity | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
concurrency: | |
group: bump-repository-activity | |
cancel-in-progress: true | |
steps: | |
- name: Get rate limits | |
uses: remal-github-actions/get-rate-limits@v1 | |
id: rate-limits | |
with: | |
githubToken: ${{env.PUSH_BACK_TOKEN || github.token}} | |
- name: Make rate limits decision | |
id: decision | |
run: | | |
echo "Core rate limit usage: ${{steps.rate-limits.outputs.coreUsage}}" | |
if [ "${{steps.rate-limits.outputs.coreUsage < 75}}" == "true" ]; then | |
echo "Enough rate limits" | |
echo 'enough=true' >> $GITHUB_OUTPUT | |
else | |
echo "::warning::Not enough rate limits!" | |
if [ "${{github.event_name != 'schedule'}}" == "true" ]; then | |
echo "::warning::Executing anyway, as event is '${{github.event_name}}'" | |
echo 'enough=true' >> $GITHUB_OUTPUT | |
else | |
echo 'enough=false' >> $GITHUB_OUTPUT | |
fi | |
fi | |
- name: Bump repository activity | |
if: ${{env.PUSH_BACK_TOKEN && fromJSON(steps.decision.outputs.enough) == true}} | |
uses: remal-github-actions/bump-repository-activity@v1 | |
with: | |
githubToken: ${{env.PUSH_BACK_TOKEN}} | |
bumperFile: 'repository-activity.bumper' | |
commitMessage: '[push-back] Bump repository activity' |