Skip to content

Commit

Permalink
Merge pull request #13 from Typeform/SETI-1159-add-ci-standard-workflow
Browse files Browse the repository at this point in the history
chore: [SETI-1159] 👷 add ci standard workflow
  • Loading branch information
picsoung authored Jun 9, 2021
2 parents 3c44f95 + 90d8190 commit 8167323
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-standard-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI Standard Checks
on:
push:
branches:
- master
pull_request:
types: [opened, edited, synchronize, reopened]
branches:
- master

jobs:
ci-standard-checks:
runs-on: [ubuntu-latest]

steps:
- name: Check Out Source Code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: CI Standard Checks
uses: Typeform/ci-standard-checks@v1
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
dockerUsername: ${{ secrets.GITLEAKS_DOCKER_USERNAME }}
dockerPassword: ${{ secrets.GITLEAKS_DOCKER_PASSWORD }}

0 comments on commit 8167323

Please sign in to comment.