testing
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8bb2bf1..42d745f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml
@@ -16,10 +16,9 @@ # Controls when the action will run. on: - schedule: - # * is a special character in YAML so you have to quote this string - # Run this Github Action every Tuesday at 7 AM UTC - - cron: '0 7 * * 2' + pull_request: + branches: + - main jobs: build: @@ -31,14 +30,8 @@ id: date run: echo "::set-output name=current_date::$(date +'%Y-%m-%d')" - - name: Check out main branch + - name: Checkout uses: actions/checkout@v3 - with: - ref: refs/heads/main - - - name: Create branch - run: | - git checkout -b update-discovery-artifacts-${{ steps.date.outputs.current_date }} - name: Set up Python 3.9 uses: actions/setup-python@v4