Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #20 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 16, 2021
2 parents 0ae1649 + 83409d2 commit ccfe1ec
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 ccfe1ec

Please sign in to comment.