Skip to content

Commit

Permalink
Use github actions to trigger tests in corporate (#6376)
Browse files Browse the repository at this point in the history
* Use github actions to trigger tests in corporate

* Rename secret
  • Loading branch information
stsewd authored and agjohnson committed Nov 13, 2019
1 parent f46405f commit 789695a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Trigger tests in corporate
run: |
curl --request POST \
--url https://circleci.com/api/v1.1/project/github/${{ secrets.CORPORATE_REPO }}/tree/master \
--user '${{ secrets.CIRCLECI_USER_TOKEN }}:' \
--data 'build_parameters[CIRCLE_JOB]=${{ secrets.CIRCLECI_JOB }}'

0 comments on commit 789695a

Please sign in to comment.