-
-
Notifications
You must be signed in to change notification settings - Fork 528
33 lines (29 loc) · 975 Bytes
/
platforms.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Check for platforms
on:
issues:
types: [opened, edited]
jobs:
main:
runs-on: ubuntu-latest
concurrency:
group: platforms-${{ github.event.issue.number }}
cancel-in-progress: true
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'software-mansion-labs/swmansion-bot'
ref: stable
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Actions
run: yarn install
- name: Platforms
uses: ./platforms
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
platforms-section-header: Platforms
platforms-comma-separated: true
platforms-with-labels: '{"Android": "Platform: Android", "iOS": "Platform: iOS", "Web": "Platform: Web", "Windows": "Platform: Windows", "tvOS": "Platform: tvOS"}'