Skip to content

Commit

Permalink
Move actions to .github directory
Browse files Browse the repository at this point in the history
  • Loading branch information
irshadahmad21 committed Dec 3, 2024
1 parent fc25f5e commit 9dfcb14
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-php-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup

- name: Prepare
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-wp-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
enable-wireit-cache: true

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
enable-wireit-cache: true

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Remote refs
uses: ./actions/upstream-refs
uses: ./.github/actions/upstream-refs
id: remote-refs

- name: Checkout premium projects repo
Expand All @@ -32,7 +32,7 @@ jobs:
ref: ${{ fromJSON(steps.remote-refs.outputs.result).premium || 'main' }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
php-version: ${{ matrix.php }}
enable-wireit-cache: true
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Remote refs
uses: ./actions/upstream-refs
uses: ./.github/actions/upstream-refs
id: remote-refs

- name: Checkout premium projects repo
Expand All @@ -86,7 +86,7 @@ jobs:
ref: ${{ fromJSON(steps.remote-refs.outputs.result).premium || 'main' }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
enable-wireit-cache: true

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Remote refs
uses: ./actions/upstream-refs
uses: ./.github/actions/upstream-refs
id: remote-refs

- name: Checkout premium projects repo
Expand All @@ -132,7 +132,7 @@ jobs:
ref: ${{ fromJSON(steps.remote-refs.outputs.result).premium || 'main' }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
enable-wireit-cache: true
php-version: ${{ matrix.php }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN_IR }}

- name: Setup Environment
uses: ./actions/setup
uses: ./.github/actions/setup
with:
enable-wireit-cache: true

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ vendor/
!/.changeset/
!/.github/
!/.vscode/
!/actions/
!/config/
!/packages/
!/plugins/
Expand Down

0 comments on commit 9dfcb14

Please sign in to comment.