Skip to content

Commit

Permalink
reestablecimiento de jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wtyd committed Dec 31, 2023
1 parent 3248577 commit cf271c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Code Analysis
# https://github.com/shivammathur/setup-php
on:
push:
branches-ignore: [ rc**, 6-cache ]
branches-ignore: [ rc** ]
pull_request:
branches-ignore: [ master ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Main Tests
# https://github.com/shivammathur/setup-php
on:
push:
branches-ignore: [ rc**, 6-cache ]
branches-ignore: [ rc** ]
pull_request:
branches-ignore: [ master ]

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ jobs:
php-version: ${{ matrix.php-versions }}
coverage: none

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
/home/runner/.cache/composer/files
key: ${{ runner.os }}-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }}
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-rc-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/schedule-ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: Schedule CI
# https://github.com/shivammathur/setup-php
on:
push:
branches: [ 6-cache ]
# schedule:
# - cron: '0 4 * * sun' # Sundays at 04 am
schedule:
- cron: '0 4 * * sun' # Sundays at 04 am


env:
Expand Down

0 comments on commit cf271c9

Please sign in to comment.