Please add energy-related task definitions in the OEO #5400
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
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
FindOutHowManyComments: | |
runs-on: ubuntu-latest | |
name: aJobThatMoves | |
steps: | |
- name: count | |
id: count | |
uses: akleinau/githubJSActions/DiscussedToColumn@master | |
with: | |
repo: https://api.github.com/repos/OpenEnergyPlatform/ontology | |
- name: printit | |
run: echo ${{ steps.count.outputs.continue }} | |
- name: addToColumn | |
uses: peter-evans/create-or-update-project-card@v1 | |
with: | |
project-name: Issues | |
column-name: In discussion | |
issue-number: ${{ steps.count.outputs.issue_number }} | |
if: steps.count.outputs.continue == 'true' | |
- name: remove to do label | |
uses: andymckay/labeler@master | |
with: | |
remove-labels: "To do" | |
if: steps.count.outputs.continue == 'true' |