Skip to content

Commit

Permalink
[actions] remove redundant finisher; use reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 9, 2024
1 parent 653e55d commit 65ab32c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 30 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/node-aught.yml
Expand Up @@ -12,10 +12,3 @@ jobs:
range: '< 10'
type: minors
command: npm run tests-only

node:
name: 'node < 10'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
7 changes: 0 additions & 7 deletions .github/workflows/node-tens.yml
Expand Up @@ -12,10 +12,3 @@ jobs:
range: '>= 10'
type: minors
command: npm run tests-only

node:
name: 'node >= 10'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
19 changes: 3 additions & 16 deletions .github/workflows/rebase.yml
Expand Up @@ -2,21 +2,8 @@ name: Automatic Rebase

on: [pull_request_target]

permissions:
contents: read

jobs:
_:
permissions:
contents: write # for ljharb/rebase to push code to rebase
pull-requests: read # for ljharb/rebase to get info about PR

name: "Automatic Rebase"

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: ljharb/rebase@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ljharb/actions/.github/workflows/rebase.yml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 65ab32c

Please sign in to comment.