| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
👋 https://urcomputeringpal.com
Listens for workflow_run events and open issues when a workflow fails. Useful for being alerted to workflow failures before they interrupt the progress of multiple team members.
name: open issues on workflow failure, close on success
on:
workflow_run:
# Configure the workflows to monitor here
workflows:
- test
- release
- etc
types:
- completed
jobs:
workflow-failure-issues:
uses: urcomputeringpal/.github/.github/workflows/workflow-failure-issues.yaml@main
# Configure the type of events to listen for here
if: |
(
github.event_name == 'schedule' ||
github.event.workflow_run.head_branch == github.event.repository.default_branch
)Like dependabot, but customizable. This workflow wraps https://github.com/renovatebot/github-action with some curated defaults. Requires a private GitHub App be installed to grant the permissions necessary to update Actions workflows etc.
name: renovate
on:
push:
branches:
- main
- renovate/configure
pull_request:
workflow_dispatch: {}
schedule:
- cron: '0 */6 * * *'
jobs:
renovate:
name: Update
if: github.event_name != 'pull_request'
uses: urcomputeringpal/.github/.github/workflows/renovate.yaml@main
with:
renovate_app_slug: your-app-name
onboarding: 'true'
secrets:
RENOVATE_APP_ID: ${{ secrets.RENOVATE_APP_ID }}
RENOVATE_APP_PEM: ${{ secrets.RENOVATE_APP_PEM }}
validate:
name: Validate
if: github.event_name == 'pull_request'
uses: urcomputeringpal/.github/.github/workflows/renovate.yaml@main
with:
renovate_app_slug: your-app-name
dry_run_branch: ${{ github.event.pull_request.head.ref }}
secrets:
RENOVATE_APP_ID: ${{ secrets.RENOVATE_APP_ID }}
RENOVATE_APP_PEM: ${{ secrets.RENOVATE_APP_PEM }}| Back | FazBrowse Home | New Git URL |