c609efbd9a
Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 5 to 6. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v5...v6) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: 🔄 Update @wxt-dev/browser
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Every day at midnight
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
sync:
|
|
name: 'Sync with @types/chrome'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
installArgs: --ignore-scripts
|
|
|
|
- name: Generate Latest Code
|
|
working-directory: packages/browser
|
|
run: pnpm gen
|
|
|
|
- name: Run Checks
|
|
working-directory: packages/browser
|
|
run: pnpm check
|
|
|
|
- name: Commit Changes
|
|
id: commit
|
|
uses: stefanzweifel/git-auto-commit-action@v6
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
commit_message: 'fix: Upgrade `@wxt-dev/browser` to latest `@types/chrome` version'
|
|
|
|
- name: Publish Package
|
|
if: steps.commit.outputs.changes_detected == 'true'
|
|
working-directory: packages/browser
|
|
run: |
|
|
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc
|
|
pnpm publish
|