casionone commented on code in PR #343: URL: https://github.com/apache/incubator-linkis-website/pull/343#discussion_r897582335
########## .github/workflows/scheduled-merge.yml: ########## @@ -0,0 +1,26 @@ +name: Scheduled Merge + +on: + schedule: + # Run everyday at 0:00 AM or 12:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) + - cron: "0 0,12 * * *" + +jobs: + # The purpose of this workflow is to periodically merge "asf-staging" into "asf-site" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + with: + ref: 'asf-staging' Review Comment: this command is mean using `asf-staging` branch? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
