Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djiit/action-renovate
Renovate as a Github Action
https://github.com/djiit/action-renovate
Last synced: about 1 month ago
JSON representation
Renovate as a Github Action
- Host: GitHub
- URL: https://github.com/djiit/action-renovate
- Owner: Djiit
- License: mit
- Created: 2019-05-28T08:50:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T15:39:11.000Z (about 5 years ago)
- Last Synced: 2024-10-15T23:07:03.993Z (3 months ago)
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# action-renovate
Renovate as a GitHub Action
## Prerequisite
- Create a GitHub Personnal Access Token with Repo access and save it in the Repo settings as `RENOVATE_TOKEN` secret
## Usage
```
name: renovateon:
- pushjobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2- uses: Djiit/action-renovate@master
with:
args: >
${{ github.repository }}
# --more-args
env:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
```> You can find more args for renovate at https://gist.githubusercontent.com/aslafy-z/fbad0562450385334bf5904a6742b052
> Note: Avoid using `master` ref, prefer to pin the last release's SHA ref.