add button to copy and paste data (off of 47.7 branch) #2
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: Snowplow | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
files-changed: | |
name: Check which files changed | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 3 | |
outputs: | |
snowplow: ${{ steps.changes.outputs.snowplow }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test which files changed | |
uses: dorny/paths-filter@v2.11.1 | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-paths.yaml | |
lint: | |
needs: files-changed | |
if: needs.files-changed.outputs.snowplow == 'true' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Lint | |
run: docker run -v $(pwd):/snowplow snowplow/igluctl:0.6.0 lint snowplow |