Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
add create PR job
  • Loading branch information
rediris committed Nov 13, 2024
1 parent 5620436 commit 3abca9e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
3 changes: 0 additions & 3 deletions src/_data/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,3 @@ paths:
icons: /img/footer/icons/
logos: /img/footer/logos/
markets: MARKETS_STATIC
test:
test1: testing
test2: testing

0 comments on commit 3abca9e

Please sign in to comment.