Skip to content

Commit

Permalink
🔧 updating workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
chrede88 committed Dec 14, 2024
1 parent f49f9f2 commit 06911bb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cleanTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ jobs:
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Setup and populate your repo"
commit_message: 'Setup and populate your repo'
20 changes: 10 additions & 10 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: "Renovate"
name: 'Renovate'

on:
workflow_dispatch:

schedule:
- cron: "0 * * * *" # Every hour
- cron: '0 * * * *' # Every hour
push:
branches: ["main"]
branches: ['main']
paths:
- .github/renovate.json

Expand All @@ -19,12 +19,12 @@ concurrency:
cancel-in-progress: true

env:
LOG_LEVEL: "debug"
LOG_LEVEL: 'debug'
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
RENOVATE_AUTODISCOVER_FILTER: '${{ github.repository }}'
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_BOT_NAME: "bb-17"
RENOVATE_BOT_NAME: 'bb-17'

jobs:
renovate:
Expand All @@ -35,16 +35,16 @@ jobs:
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_PRIVATE_KEY }}"
app-id: '${{ secrets.BOT_APP_ID }}'
private-key: '${{ secrets.BOT_PRIVATE_KEY }}'

- name: Checkout
uses: actions/checkout@v4
with:
token: "${{ steps.app-token.outputs.token }}"
token: '${{ steps.app-token.outputs.token }}'

- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate.json
token: "${{ steps.app-token.outputs.token }}"
token: '${{ steps.app-token.outputs.token }}'

0 comments on commit 06911bb

Please sign in to comment.