Skip to content

Figure.plot: Crash for pd.DataFrame input containing floats when using "data" and "incols" #5810

Figure.plot: Crash for pd.DataFrame input containing floats when using "data" and "incols"

Figure.plot: Crash for pd.DataFrame input containing floats when using "data" and "incols" #5810

# Support slash commands in pull requests
#
# Currently, two slash commands `format` and `test-gmt-dev` are supported.
#
name: Slash Command Dispatch
on:
issue_comment:
types: [created]
# Add "edited" type for test purposes. Where possible, avoid using to prevent processing unnecessary events.
# types: [created, edited]
jobs:
slashCommandDispatch:
if: ${{ github.event.issue.pull_request }}
runs-on: ubuntu-latest
steps:
# Generate token from GenericMappingTools bot
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v3
with:
token: ${{ steps.generate-token.outputs.token }}
commands: |
format
test-gmt-dev
issue-type: pull-request
permission: none