jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Tech / everything · hot matching “action”

2 shown · updated 55s ago · read only
  1. How to skip linting when particular microservices folder have changes in README? If another have code changes then it will run (stackoverflow.com)stack

    13 points by Nenis Rudani in stackoverflow.com · 19d ago · stack

    This is my workflow where I have multiple microservices: name: Lint2 Microservices on: # second list pull_request: # on a pull request to each of these branches types: [opened, synchronize, edited, ready_for_review] branches: - load-test paths-ignore: - '**.md' - '**/temp.env' -…
  2. How to access reference in reusable workflow (stackoverflow.com)stack

    10 points by Kay in stackoverflow.com · 3y ago · stack

    Context A reusable workflow in public repos may be called by appending a reference which can be a SHA, a release tag, or a branch name, as for example: {owner}/{repo}/.github/workflows/{filename}@{ref} Githubs documentation states: When a reusable workflow is triggered by a call…