Bumps [EndBug/add-and-commit](https://github.com/EndBug/add-and-commit) from 7 to 8. - [Release notes](https://github.com/EndBug/add-and-commit/releases) - [Changelog](https://github.com/EndBug/add-and-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/EndBug/add-and-commit/compare/v7...v8) --- updated-dependencies: - dependency-name: EndBug/add-and-commit dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
518 B
YAML
21 lines
518 B
YAML
name: Update Monaco-editor
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [opened]
|
|
branches:
|
|
- 'dependabot/npm_and_yarn/develop/monaco-editor-**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: ./bin/update-monaco
|
|
- name: Commit changes
|
|
uses: EndBug/add-and-commit@v8
|
|
with:
|
|
author_name: ${{ github.actor }}
|
|
author_email: ${{ github.actor }}@users.noreply.github.com
|
|
message: 'Update Monaco-editor'
|