-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat: add a linter for github actions workflows #7178
Conversation
@@ -423,9 +399,6 @@ jobs: | |||
name: Build and Push DataHub Elasticsearch Setup Docker Image | |||
runs-on: ubuntu-latest | |||
needs: setup | |||
outputs: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this just unnecessry? Not providing any value? Or are outputs from prev step just automatically propagated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see. These are unused, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the linter is failing :p
@@ -48,9 +48,6 @@ jobs: | |||
name: Build and Push Docker Image to Docker Hub | |||
runs-on: ubuntu-latest | |||
needs: setup | |||
outputs: | |||
image_tag: ${{ steps.docker_meta.outputs.tags }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused output?
Lint issue will be fixed by #7179 |
Co-authored-by: John Joyce <[email protected]>
Co-authored-by: John Joyce <[email protected]>
Co-authored-by: John Joyce <[email protected]>
Checklist