Skip to content

Commit 691376b

Browse files
jbindaTrancever
authored andcommittedJun 2, 2020
feat: add action to check versions of library (#1947)
1 parent e76e589 commit 691376b

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed
 
File renamed without changes.

‎.github/ISSUE_TEMPLATE/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Getting Started
4+
url: https://callstack.github.io/react-native-paper/getting-started.html
5+
about: Read how to get started with react-native-paper.
6+
- name: Documentation
7+
url: https://callstack.github.io/react-native-paper/index.html
8+
about: Read the official documentation.
9+
- name: Example
10+
url: https://snack.expo.io/@satya164/github.com-callstack-react-native-paper:example
11+
about: See the official example app.
12+
- name: Contributing guide
13+
url: https://github.com/callstack/react-native-paper/blob/master/CONTRIBUTING.md
14+
about: See our contributing guide.
15+
- name: Discord channel
16+
url: https://discord.com/channels/426714625279524876/438316503113138176
17+
about: Join to our official discord channel.
File renamed without changes.

‎.github/workflows/versions.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Check versions
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
check-versions:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: check-out-repository
11+
uses: actions/checkout@v2
12+
13+
- uses: react-navigation/check-versions-action@master
14+
with:
15+
github-token: ${{ secrets.GITHUB_TOKEN }}
16+
packages: |
17+
react-native
18+
react-native-paper
19+
expo
20+
npm
21+
yarn

0 commit comments

Comments
 (0)