forked from ornladios/ADIOS2
-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (27 loc) · 844 Bytes
/
sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: OLCF sync script
on:
schedule:
- cron: "0/10 * * * *"
workflow_dispatch:
jobs:
sync-script:
if: github.repository == 'ornladios/ADIOS2'
name: Sync Script
runs-on: ubuntu-20.04
environment: sync-script
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.6.15'
- run: pip install python-dateutil PyGithub
- run: >
.gitlab/config/SpackCIBridge.py
ornladios/ADIOS2 [email protected]:ecpcitest/adios2.git
https://code.ornl.gov/ ecpcitest/adios2
--prereq-check=format --prereq-check=git_checks --disable-status-post
env:
GITLAB_SSH_KEY_BASE64: ${{ secrets.GITLAB_SSH_KEY_BASE64}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}