2021-02-26 22:45:50 +01:00
|
|
|
name: Auction House Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-26 22:47:47 +01:00
|
|
|
branches: [ main ]
|
2021-02-26 22:45:50 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2021-02-26 23:00:22 +01:00
|
|
|
|
|
|
|
- name: Transfer main branch to Tweetzy
|
2021-02-26 23:36:32 +01:00
|
|
|
uses: andstor/copycat-action@v3
|
2021-02-26 23:00:22 +01:00
|
|
|
with:
|
2021-02-26 23:36:32 +01:00
|
|
|
personal_token: ${{ secrets.API_TOKEN_GITHUB }}
|
|
|
|
src_path: /.
|
|
|
|
dst_owner: Tweetzy
|
|
|
|
dst_repo_name: Auction-House
|
|
|
|
email: kiran.hart@live.com
|
|
|
|
src_branch: main
|
2021-02-27 00:02:26 +01:00
|
|
|
dst_branch: main
|
2021-02-26 23:47:57 +01:00
|
|
|
commit_message: ${{ github.event.head_commit.message }}
|
2021-02-27 00:04:17 +01:00
|
|
|
exclude: .github/
|