Bump webpack from 5.93.0 to 5.95.0 #102
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: Merge to events-discovery | |
# Controls when the action will run. | |
on: | |
pull_request: | |
types: [ closed ] | |
branches: [ dev ] | |
jobs: | |
merge-to-events-discovery: | |
name: Merge to events-discovery | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
# Only run on merged PRs. | |
if: ${{ github.event.pull_request.merged }} | |
steps: | |
- name: Merge dev into events-discovery | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
from_branch: dev | |
target_branch: events-discovery | |
github_token: ${{ secrets.ADMIN_GITHUB_TOKEN }} |