Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adobe-rnd/github-rerun-circleci-action
Runs circleci job again
https://github.com/adobe-rnd/github-rerun-circleci-action
Last synced: 3 days ago
JSON representation
Runs circleci job again
- Host: GitHub
- URL: https://github.com/adobe-rnd/github-rerun-circleci-action
- Owner: adobe-rnd
- Created: 2022-02-27T14:28:25.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T07:33:39.000Z (2 months ago)
- Last Synced: 2025-01-18T04:42:27.319Z (10 days ago)
- Language: JavaScript
- Size: 187 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Rerun CircleCI Action
This action reruns a circleci workflow if one of its steps has a status `unauthorized`.
this is useful when renovate-bot runs the CI and doesn't have access to run the jobs.## Inputs
### `circleci-token`
**Required** the CircleCI token to access its API
## Example usage
```
on:
check_run:
types: [ completed ]
branches-ignore:
- 'main'jobs:
ci_trigger:
runs-on: ubuntu-latest
name: Rerun failed CircleCI
steps:
- name: Run
id: run
uses: adobe-rnd/github-rerun-circleci-action@main
with:
circleci-token: ${{ secrets.CIRCLECI_TOKEN }}
```# Development
## build and deploy
```sh-session
$ npm run build
$ git commit -am"...."
$ npm release
```