This topic was automatically generated from Slack. You can find the original thread here.
Did something change in regards to actions supported w/ workflows using GitHub? I have an existing workflow in a project using GH, and it has a filter action. i was making a new version of it and created a new workflow, but now i cant add filter.
I wonder if we’re misclassifying the Filter actions as a control flow block (control flow blocks don’t currently work with Git Sync), just shared w/ that team
yep, github actions did tweak some of the way reusable workflows and filters work. the old filter action you are referring to probably relied on behavior that is now restricted to either workflow_call contexts or deprecated syntax. if you are making a new workflow, you will need to make sure your on: triggers and jobs structure actually support the filter logic. a lot of people get tripped up because if: conditions at the job level behave differently than they did a year ago. basically, double-check that your filter isn’t trying to run in a context github no longer allows, otherwise it just won’t show up.