diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2acc616f..3a1ff015 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: changed_files: runs-on: ubuntu-latest # windows-latest || macos-latest - name: Test changed-files + name: Test changed files steps: - uses: actions/checkout@v4 with: @@ -33,3 +33,19 @@ jobs: for file in ${ALL_CHANGED_FILES}; do echo "$file was changed" done + + create_pr: + runs-on: ubuntu-latest + name: create PR + steps: + - uses: actions/checkout@v4 + with: + ref: api/dev + - name: Reset develop branch + run: | + git fetch origin develop:develop + git reset --hard develop + - name: Create Pull Request + uses: peter-evans/create-pull-request@v7 + with: + branch: auto/api/dev diff --git a/src/_data/config.yml b/src/_data/config.yml index bdd73838..a22a1a0d 100644 --- a/src/_data/config.yml +++ b/src/_data/config.yml @@ -307,6 +307,3 @@ paths: icons: /img/footer/icons/ logos: /img/footer/logos/ markets: MARKETS_STATIC -test: - test1: testing - test2: testing