Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit ed3a26a

Browse files
committed
Run automated action migrator
1 parent f7be990 commit ed3a26a

File tree

4 files changed

+46
-42
lines changed

4 files changed

+46
-42
lines changed

.github/main.workflow

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/issues.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: issues
2+
name: Core team issues
3+
jobs:
4+
considerIssueForReleaseBoard:
5+
name: Consider issue for release board
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: Consider issue for release board
10+
uses: actions/bin/filter@master
11+
with:
12+
args: action assigned
13+
- name: Add issue to release board
14+
uses: ./actions/auto-sprint
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pull_request.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: pull_request
2+
name: Core team pull requests
3+
jobs:
4+
considerPullRequestForReleaseBoard:
5+
name: Consider pull request for release board
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: Consider pull request for release board
10+
uses: actions/bin/filter@master
11+
with:
12+
args: action 'opened|merged|assigned|reopened'
13+
- name: Add pull request to release board
14+
uses: ./actions/auto-sprint
15+
env:
16+
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}

.github/workflows/schedule.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
schedule:
3+
- cron: 0 1 * * 4
4+
name: GraphQL schema update
5+
jobs:
6+
updateSchema:
7+
name: Update schema
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
- name: Update schema
12+
uses: ./actions/schema-up
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)