Secular notebook has cutoff for periodic fitting validity, and GNSS k… #75
This file contains 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
# This is a basic workflow to help you get started with Actions | |
# link: https://dev.to/brunorobert/github-and-gitlab-sync-44mn | |
name: GitLabSync | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
delete: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "sync" | |
sync: | |
# only run on the upstream repo | |
if: github.repository == 'nisar-solid/ATBD' | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
name: Git Repo Sync | |
# 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@v2 | |
with: | |
fetch-depth: 0 | |
# Runs a single command using the runners shell | |
- uses: wangchucheng/[email protected] | |
with: | |
# Such as https://github.com/wangchucheng/git-repo-sync.git | |
target-url: ${{ secrets.GITLAB_URL }} | |
# Such as wangchucheng | |
target-username: ${{ secrets.GITLAB_USERNAME }} | |
# You can store token in your project's 'Setting > Secrets' and reference the name here. Such as ${{ secrets.ACCESS\_TOKEN }} | |
target-token: ${{ secrets.GITLAB_TOKEN }} |