Update levitation.rs (changed actual_height to actual_current) #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Require Linear Issue in Pull Request | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
types: [opened, reopened] | |
jobs: | |
require-linear-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Find the Linear Issue | |
id: find-issue | |
uses: ctriolo/action-find-linear-issue@v0.60 | |
with: | |
linear-api-key: ${{ secrets.LINEAR_API_KEY }} | |
- name: Require Linear Issue | |
run: | | |
if [ -z "${{ steps.find-issue.outputs.linear-issue-identifier }}" ]; then | |
echo "Please add a Linear ID to the title of the Pull Request. Using the Linear branch name would have done this automatically." | |
exit 1 | |
fi |