Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gutenberg Plugin: Prettify YAML scripts #30409

Merged
merged 1 commit into from
Mar 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .github/ISSUE_TEMPLATE/config.yml
Whitespace-only changes.
3 changes: 1 addition & 2 deletions .github/workflows/build-plugin-zip.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ jobs:
git push git push
fi fi



build: build:
name: Build Release Artifact name: Build Release Artifact
runs-on: ubuntu-latest runs-on: ubuntu-latest
Expand Down Expand Up @@ -189,7 +188,7 @@ jobs:
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: "v${{ needs.bump-version.outputs.new_version }}" tag_name: 'v${{ needs.bump-version.outputs.new_version }}'
release_name: ${{ steps.get_release_version.outputs.version }} release_name: ${{ steps.get_release_version.outputs.version }}
commitish: ${{ needs.bump-version.outputs.release_branch || github.ref }} commitish: ${{ needs.bump-version.outputs.release_branch || github.ref }}
draft: true draft: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundle-size.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:


- uses: preactjs/compressed-size-action@7d87f60a6b0c7d193b8183ce859ed00b356ea92f # v2.1.0 - uses: preactjs/compressed-size-action@7d87f60a6b0c7d193b8183ce859ed00b356ea92f # v2.1.0
with: with:
repo-token: "${{ secrets.GITHUB_TOKEN }}" repo-token: '${{ secrets.GITHUB_TOKEN }}'
pattern: "{build/**/*.js,build/**/*.css}" pattern: '{build/**/*.js,build/**/*.css}'
Empty file modified .github/workflows/cancel.yml
Whitespace-only changes.
Whitespace-only changes.
1 change: 0 additions & 1 deletion .github/workflows/end2end-test.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
matrix: matrix:
part: [1, 2, 3, 4] part: [1, 2, 3, 4]



steps: steps:
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4


Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/performance.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -54,5 +54,3 @@ jobs:
IFS='.' read -r -a WP_VERSION_ARRAY <<< "$WP_VERSION" IFS='.' read -r -a WP_VERSION_ARRAY <<< "$WP_VERSION"
WP_BRANCH="wp/${WP_VERSION_ARRAY[0]}.${WP_VERSION_ARRAY[1]}" WP_BRANCH="wp/${WP_VERSION_ARRAY[0]}.${WP_VERSION_ARRAY[1]}"
./bin/plugin/cli.js perf --ci $WP_BRANCH $PREVIOUS_RELEASE_BRANCH $CURRENT_RELEASE_BRANCH ./bin/plugin/cli.js perf --ci $WP_BRANCH $PREVIOUS_RELEASE_BRANCH $CURRENT_RELEASE_BRANCH


Whitespace-only changes.
4 changes: 1 addition & 3 deletions .github/workflows/rnmobile-android-runner.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
strategy: strategy:
matrix: matrix:
native-test-name: [ native-test-name: [gutenberg-editor-initial-html]
gutenberg-editor-initial-html
]


steps: steps:
- name: checkout - name: checkout
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/rnmobile-ios-runner.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
strategy: strategy:
matrix: matrix:
xcode: [12.2] xcode: [12.2]
native-test-name: [ native-test-name: [gutenberg-editor-initial-html]
gutenberg-editor-initial-html
]


steps: steps:
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stale-issue-add-needs-testing.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Mark old issues as needs confirmation" name: 'Mark old issues as needs confirmation'
on: on:
schedule: schedule:
- cron: "45 1 * * *" - cron: '45 1 * * *'


jobs: jobs:
stale: stale:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stale-issue-mark-stale.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Mark issues stale after needs testing for 30 days" name: 'Mark issues stale after needs testing for 30 days'
on: on:
schedule: schedule:
- cron: "55 1 * * *" - cron: '55 1 * * *'


jobs: jobs:
stale: stale:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stale-issue-needs-info.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Mark issues stale that require info" name: 'Mark issues stale that require info'
on: on:
schedule: schedule:
- cron: "30 1 * * *" - cron: '30 1 * * *'


jobs: jobs:
stale: stale:
Expand Down
Whitespace-only changes.
Whitespace-only changes.
1 change: 0 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ jobs:
run: npm run test-unit-php-multisite run: npm run test-unit-php-multisite
if: ${{ success() || failure() }} if: ${{ success() || failure() }}



mobile-unit-js: mobile-unit-js:
name: Mobile name: Mobile


Expand Down
Whitespace-only changes.
Whitespace-only changes.