Skip to content

Commit

Permalink
[core] Follow coding style (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Nov 18, 2024
1 parent 5a62ae5 commit b4173e7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issues_add-closing-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const script = require('./.github/workflows/scripts/issues/addClosingMessage.js')
await script({core, github, context})
const script = require('./.github/workflows/scripts/issues/addClosingMessage.js');
await script({core, github, context});
4 changes: 2 additions & 2 deletions .github/workflows/issues_body-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jobs:
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const script = require('./.github/workflows/scripts/issues/bodyCleanup.js')
await script({core, github, context})
const script = require('./.github/workflows/scripts/issues/bodyCleanup.js');
await script({core, github, context});
4 changes: 2 additions & 2 deletions .github/workflows/issues_order-id-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const script = require('./.github/workflows/scripts/issues/orderIdValidation.js')
await script({core, github, context})
const script = require('./.github/workflows/scripts/issues/orderIdValidation.js');
await script({core, github, context});
env:
ORDER_ID: ${{ inputs.orderId }}
ORDER_API_TOKEN: ${{ secrets.SHOP_AUTH_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/prs_check-target-branch-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jobs:
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const script = require('./.github/workflows/scripts/prs/checkTargetBranchLabel.js')
await script({core, github, context})
const script = require('./.github/workflows/scripts/prs/checkTargetBranchLabel.js');
await script({core, github, context});
4 changes: 2 additions & 2 deletions .github/workflows/prs_create-cherry-pick-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const script = require('./.github/workflows/scripts/prs/detectTargetBranch.js')
await script({core, github, context})
const script = require('./.github/workflows/scripts/prs/detectTargetBranch.js');
await script({core, github, context});
open_cherry_pick_pr:
runs-on: ubuntu-latest
name: Open cherry-pick PR with target branch
Expand Down

0 comments on commit b4173e7

Please sign in to comment.