Skip to content

Commit

Permalink
feat: add action to check versions of library (#1947)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbinda authored and Trancever committed Jun 2, 2020
1 parent e76e589 commit 691376b
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
File renamed without changes.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
blank_issues_enabled: false
contact_links:
- name: Getting Started
url: https://callstack.github.io/react-native-paper/getting-started.html
about: Read how to get started with react-native-paper.
- name: Documentation
url: https://callstack.github.io/react-native-paper/index.html
about: Read the official documentation.
- name: Example
url: https://snack.expo.io/@satya164/github.com-callstack-react-native-paper:example
about: See the official example app.
- name: Contributing guide
url: https://github.com/callstack/react-native-paper/blob/master/CONTRIBUTING.md
about: See our contributing guide.
- name: Discord channel
url: https://discord.com/channels/426714625279524876/438316503113138176
about: Join to our official discord channel.
File renamed without changes.
21 changes: 21 additions & 0 deletions .github/workflows/versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check versions
on:
issues:
types: [opened]

jobs:
check-versions:
runs-on: ubuntu-latest
steps:
- name: check-out-repository
uses: actions/checkout@v2

- uses: react-navigation/check-versions-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
packages: |
react-native
react-native-paper
expo
npm
yarn

0 comments on commit 691376b

Please sign in to comment.