Feature: migrate Resource object to new TF SDK, breaking changes for protocols section #1340
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "PR Checks" | |
permissions: read-all | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, edited] | |
# Ensures only 1 action runs per PR and previous is canceled on new trigger | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
verify-pr: | |
name: "Verify PR title and desc" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Danger | |
uses: danger/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DANGER_DISABLE_TRANSPILATION: true |