Skip to content

Commit

Permalink
Added github action to keep legacy master branch up to date with late…
Browse files Browse the repository at this point in the history
…st main
  • Loading branch information
giuliomoro committed Jan 31, 2025
1 parent 2af5a53 commit 19606db
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main-to-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
pernmissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Update legacy master
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}

0 comments on commit 19606db

Please sign in to comment.