Skip to content

Commit

Permalink
Add BEP update reminder (#298)
Browse files Browse the repository at this point in the history
* add workflow

* update title

* only run on upstream
  • Loading branch information
Remi-Gau authored May 19, 2023
1 parent a1dfd21 commit 61d56a5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
# Documentation
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
28 changes: 28 additions & 0 deletions .github/workflows/bep_update_reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: BEP update reminder

on:
schedule:
# 1rst of may and november
- cron: 0 0 1 5,11 *
workflow_dispatch:

jobs:

bep_update_reminder:

runs-on: ubuntu-latest

# only trigger update on upstream repo
if: github.repository_owner == 'bids-standard'

steps:
- name: open issue
uses: rishabhgupta/git-action-issue@v2
id: Issue
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: BEP update reminder
body: "Ask BEP leads for an update on the BEPs."
- run: |
echo ${{ steps.issue.outputs.issue }}

0 comments on commit 61d56a5

Please sign in to comment.