Skip to content

Commit

Permalink
Merge branch 'fix_analysis_failure' of github.com:dart-lang/webdev in…
Browse files Browse the repository at this point in the history
…to fix_analysis_failure
  • Loading branch information
bkonyi committed Jul 8, 2024
2 parents e62fd1b + 2cb60aa commit b4c7024
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/changelog_reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Check changed files
run: |
git fetch origin master
PR_DIFF=$(git diff origin/master --name-only)
git fetch origin main
PR_DIFF=$(git diff origin/main --name-only)
echo "$PR_DIFF"
if [[ $PR_DIFF == *"CHANGELOG.md"* ]]; then
echo "CHANGELOG.md has been updated."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dcm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:
types: [synchronize, opened, reopened]
branches:
- master
- main

jobs:
dcm:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Publish

on:
pull_request:
branches: [ master ]
branches: [ main ]
types: [opened, synchronize, reopened, labeled, unlabeled]
push:
tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+*' ]
Expand Down

0 comments on commit b4c7024

Please sign in to comment.