Bump @types/node in /packages/ansible-language-server #142
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dedupe | |
on: | |
push: | |
branches: ['dependabot/**'] | |
permissions: | |
contents: write | |
pull-requests: write | |
repository-projects: write | |
jobs: | |
dedupe: | |
name: Dedupe Dependabot PRs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache .yarn/cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: yarn-cache | |
with: | |
path: .yarn/cache | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }} | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
cache-dependency-path: "**/yarn.lock" | |
node-version-file: .tool-versions | |
- name: node post install | |
run: | | |
corepack enable | |
npm config set fund false | |
- name: Configure Git | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
- name: Detect working directory | |
run: | | |
echo "WORKING_DIRECTORY=$(git log -1 --pretty=%B | sed -n 's/.* in \/\(.*\)$/\1/p')" >> $GITHUB_ENV | |
- name: Dedupe dependencies | |
run: yarn dedupe | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
env: | |
HUSKY: 0 | |
- name: Commit changes | |
run: | | |
git add . | |
git commit -m '[dependabot skip] Dedupe dependencies' || true | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Push changes | |
run: git push | |
working-directory: ${{ env.WORKING_DIRECTORY }} |