Skip to content

Commit

Permalink
Add test action to sync to duplicated repo
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbjeldbak committed Feb 11, 2020
1 parent d8b4710 commit cccf634
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
- 'releases/*'

jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ./
with:
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
target_repo_url: git@github.com:net-engine/github-action-repository-sync-test.git
source_branch: master
target_branch: master

0 comments on commit cccf634

Please sign in to comment.