Skip to content

🤖 Merge PR #70756 feat: req-real-ip by @lacherogwu #4

🤖 Merge PR #70756 feat: req-real-ip by @lacherogwu

🤖 Merge PR #70756 feat: req-real-ip by @lacherogwu #4

name: Format And Commit
concurrency:
group: ${{ github.ref }}
on:
push:
branches:
- master
workflow_dispatch: ~
jobs:
dprint-fmt:
runs-on: ubuntu-latest
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
# Use a deploy key so that CI triggers on pushes; we want to know if formatting broke something.
ssh-key: ${{ secrets.DEPLOY_KEY }}
- uses: ./.github/actions/setup-for-scripts
- name: Get date
id: date
run: echo "date=$(/bin/date -u "+%Y-%m-%d")" >> $GITHUB_OUTPUT
- uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
with:
# dprint caches info about the files in the repo to skip formatting them.
# However, since package.json and .dprint.jsonc don't change very often,
# using them solely for the cache key would mean that the cache would be
# eventually outdated enough to make the cache useless. To avoid this,
# we also include the date in the cache key to ensure the cache is invalidated
# more often.
key: ${{ runner.os }}-dprint-${{ hashFiles('package.json', '.dprint.jsonc') }}-${{ steps.date.outputs.date }}
path: ~/.cache/dprint
restore-keys: |
${{ runner.os }}-dprint-${{ hashFiles('package.json', '.dprint.jsonc') }}
${{ runner.os }}-dprint-
- run: pnpm dprint fmt
- uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
with:
commit_author: 'TypeScript Bot <typescriptbot@microsoft.com>'
commit_message: '🤖 dprint fmt'
commit_user_email: 'typescriptbot@microsoft.com'
commit_user_name: 'TypeScript Bot'