Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bfra-me/renovate-action
GitHub Action for Self-Hosted Renovate
https://github.com/bfra-me/renovate-action
action composite github-action github-actions nodejs renovate self-hosted typescript
Last synced: about 18 hours ago
JSON representation
GitHub Action for Self-Hosted Renovate
- Host: GitHub
- URL: https://github.com/bfra-me/renovate-action
- Owner: bfra-me
- License: mit
- Created: 2023-09-22T01:31:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T09:25:01.000Z (19 days ago)
- Last Synced: 2024-10-29T09:40:08.100Z (19 days ago)
- Topics: action, composite, github-action, github-actions, nodejs, renovate, self-hosted, typescript
- Language: TypeScript
- Size: 6.67 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Renovate Action
This action runs a self-hosted Renovate bot to keep your dependencies up-to-date.### Usage
Include the following workflow in your repository:
```yaml
# .github/workflows/renovate.yaml
---
name: Renovate'on':
push:
branches:
- main
# Remove this filter if Renovate is configured to automerge via PR
- 'renovate/**'
pull_request:
workflow_dispatch:
schedule:
- cron: '0 */6 * * *' # Run every 6 hoursjobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- uses: bfra-me/renovate-action@v4
with:
dry-run: ${{ github.event_name == 'pull_request' }}
renovate-app-id: ${{ secrets.APPLICATION_ID }}
renovate-app-private-key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
```### License
[MIT](LICENSE.md)