Merge pull request #655 from Aiven-Open/pavdmyt/enable-systemd-journa… #86
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Sync master from main" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sync_master_from_main: | |
| runs-on: ubuntu-latest | |
| name: Sync master from main | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: main | |
| fetch-depth: 0 | |
| - name: Push to master | |
| run: git push origin main:master |