This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
"not a directory: unknown: Are you trying to mount a directory onto a file" error produced when mounting a single file on a container #1364
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: Remove pending label on answer | |
on: | |
issue_comment: | |
types: [ created ] | |
jobs: | |
pending: | |
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending') }} | |
name: Remove pending label | |
runs-on: ubuntu-latest | |
steps: | |
- name: removelabel | |
uses: siegerts/pending-response@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pending-response-label: pending |