Skip to content

Commit

Permalink
ci: enable fixdiscover automation
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Nov 19, 2024
1 parent 7c65b5d commit a1a7322
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
labels:
- github_actions
24 changes: 24 additions & 0 deletions .github/workflows/fixdiscover.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: FixDiscover for finding backport candidates in systemd JIRA issues
on:
schedule:
# Workflow runs every week on sunday at 23:00 UTC
- cron: '0 23 * * 0'
workflow_dispatch:

permissions:
contents: read

jobs:
fixdiscover:
if: github.repository == 'redhat-plumbers/.github'
runs-on: ubuntu-latest

steps:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'

- run: npx fixdiscover --component systemd
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a1a7322

Please sign in to comment.