Feats/1.16 #458
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: "Check version!" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled, push] | |
jobs: | |
# Enforces the update of the gradle file on every pull request | |
test: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
steps: | |
- name: Get Changed Files | |
id: changed | |
uses: foodee/pr-includes-file-change@master | |
with: | |
paths: github/workflows/gradle.yml | |
- name: Echo Match | |
if: steps.changed.outputs.matched == 'true' | |
run: echo Matched |