Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check_repo: ignore unpublished local changes #663

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

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 <[email protected]>
@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