Skip to content

check_repo: ignore unpublished local changes#663

Open
bergwolf wants to merge 1 commit intokatyo:mainfrom
bergwolf:github/check-repo
Open

check_repo: ignore unpublished local changes#663
bergwolf wants to merge 1 commit intokatyo:mainfrom
bergwolf:github/check-repo

Conversation

@bergwolf
Copy link

@bergwolf bergwolf commented Aug 8, 2023

To allow force ignoring unpublished local changes as we might not be really publishing a release when running this action.

To allow force ignoring unpublished local changes as we might not be
really publishing a release when running this action.

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
@bergwolf bergwolf force-pushed the github/check-repo branch from 6cc764a to 7dd35b6 Compare August 8, 2023 03:45
Comment on lines 61 to +66
package_errors = package_errors.filter(
({kind}) => kind !== 'unable-to-get-commit-date'
)
package_errors = package_errors.filter(
({kind}) => kind !== 'has-unpublished-changes'
)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about merging both filters?

package_errors = package_errors.filter(
    ({kind}) => kind !== 'unable-to-get-commit-date' &&
                kind !== 'has-unpublished-changes'
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

Comments