-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,17 @@ | ||
name: OSF Test | ||
|
||
# Trigger the workflow on pull request | ||
name: osf_test | ||
on: workflow_dispatch | ||
permissions: write-all | ||
|
||
jobs: | ||
create_new_branch: | ||
runs-on: ubuntu-latest | ||
# outputs: | ||
# BRANCHNAME: ${{ steps.branch.outputs.branchName }} | ||
|
||
steps: | ||
# This will automatically create a new branch from this issue, using custom config at /.github/issue-branch.yml 🟢 | ||
# - name: Create Issue Branch | ||
# id: branch | ||
# uses: robvanderleek/create-issue-branch@main | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
||
# Set up Python | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
|
||
# Install datalad 🟢 | ||
- name: Install Datalad | ||
id: testing | ||
run: | | ||
|
@@ -34,13 +21,11 @@ jobs: | |
git config --global user.name "hvgazula" | ||
git config --global user.email "[email protected]" | ||
# Checkout the repository to the GitHub Actions runner 🟢 | ||
- uses: actions/checkout@v4 | ||
- name: Checkout the repo | ||
uses: actions/checkout@v4 | ||
with: | ||
# ref: ${{ steps.branch.outputs.branchName }} | ||
fetch-depth: 0 | ||
|
||
# Git annex addurl the weights | ||
- name: Git-annex/Datalad add the weights | ||
env: | ||
OSF_TOKEN: ${{ secrets.OSF_TOKEN }} | ||
|