Repository: srggrs/assign-one-project-github-action Branch: master Commit: 4fc2b23bdaaa Files: 9 Total size: 17.0 KB Directory structure: gitextract_g1tpn4ud/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml └── entrypoint.sh ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/main.yml ================================================ # name: Auto Assign to Project(s) # on: # issues: # types: [opened, labeled] # pull_request: # types: [opened, labeled] # env: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # jobs: # assign_one_project: # runs-on: ubuntu-latest # name: Assign to One Project # steps: # - name: Assign NEW issues and NEW pull requests to project 2 # uses: srggrs/assign-one-project-github-action@1.2.0 # if: github.event.action == 'opened' # with: # project: 'https://github.com/srggrs/assign-one-project-github-action/projects/2' # - name: Assign issues and pull requests with `bug` label to project 3 # uses: srggrs/assign-one-project-github-action@1.2.0 # if: | # contains(github.event.issue.labels.*.name, 'bug') || # contains(github.event.pull_request.labels.*.name, 'bug') # with: # project: 'https://github.com/srggrs/assign-one-project-github-action/projects/3' # column_name: 'Labeled' name: Debug JSON on: issues: types: [opened, labeled, unlabeled] pull_request: types: [opened, labeled, unlabeled] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: debugging: runs-on: ubuntu-latest name: Debugging steps: - name: Debugging JSON run: | echo "Event Type: ${{ github.event_name }}" env cat $GITHUB_EVENT_PATH ================================================ FILE: .gitignore ================================================ *.sublime* ================================================ FILE: CHANGELOG.md ================================================ # Change Log All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), with an added `List of PRs` section and links to the relevant PRs on the individal updates. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased](https://github.com/srggrs/assign-one-project-github-action/compare/master...HEAD) #### Added TBC #### Changed TBC #### Fixed TBC #### Removed TBC ## [1.3.1](https://github.com/srggrs/assign-one-project-github-action/compare/1.3.1...HEAD) (2021-10-04) #### Added * Added `issue_comment` as trigger [#76](https://github.com/srggrs/assign-one-project-github-action/pull/76). #### Fixed * Better error messages [#1dbdca2](https://github.com/srggrs/assign-one-project-github-action/commit/1dbdca2) ## [1.3.0](https://github.com/srggrs/assign-one-project-github-action/compare/1.3.0...HEAD) (2021-09-26) #### Added * Added pagination in project finding [#69](https://github.com/srggrs/assign-one-project-github-action/pull/69). #### Fixed * Change documentation: `event` to `event_name` [#75](https://github.com/srggrs/assign-one-project-github-action/pull/75). ## [1.2.1](https://github.com/srggrs/assign-one-project-github-action/compare/prep-release-1.2.1...HEAD) (2021-03-07) #### Added * Added support for repository forks with `pull request target` event [#62](https://github.com/srggrs/assign-one-project-github-action/pull/62). * Added Changelog [#66](https://github.com/srggrs/assign-one-project-github-action/pull/66). * Added Code of Conduct [#66](https://github.com/srggrs/assign-one-project-github-action/pull/66). #### Changed * Changed README with latest changes [#66](https://github.com/srggrs/assign-one-project-github-action/pull/66). * Change action to use local Docker image [#68](https://github.com/srggrs/assign-one-project-github-action/pull/68). ## [1.2.0](https://github.com/srggrs/assign-one-project-github-action/compare/prep-release-1.2.0...HEAD) () Last release to start tracking changes. Features: * add issue or PR to a project column * specify the name of the column [#35](https://github.com/srggrs/assign-one-project-github-action/pull/35) #### List of PRs - [#68](https://github.com/srggrs/assign-one-project-github-action/pull/68) fix: change action to use local dockerfile. - [#66](https://github.com/srggrs/assign-one-project-github-action/pull/66) doc: added Changelog and code of conduct, change readme. - [#62](https://github.com/srggrs/assign-one-project-github-action/pull/62) feat: added support for Pull request target for forks of repository. - [#59](https://github.com/srggrs/assign-one-project-github-action/pull/59) doc: fix typo. - [#35](https://github.com/srggrs/assign-one-project-github-action/pull/35) feat: add support for custom column name. ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code Of Conduct This project is for a community based on openness, as well as friendly and didactic discussions. Such community should aspire to treat everybody equally, and value their contributions. Decisions are made based on technical merit and consensus. Code is not the only way to help the project. Reviewing pull requests, answering questions to help others on mailing lists or issues, organizing and teaching tutorials, working on the website, improving the documentation, are all priceless contributions. Such community should abide by the principles of openness, respect, and consideration of others of the Python Software Foundation: https://www.python.org/psf/codeofconduct/ ## Extra Guidelines Please follow these guidelines in all your interactions: - __Behave professionally__. Harassment and sexist, racist, or exclusionary comments or jokes are not appropriate. Harassment includes sustained disruption of talks or other events, inappropriate physical contact, sexual attention or innuendo, deliberate intimidation, stalking, and photography or recording of an individual without consent. It also includes offensive comments related to gender, sexual orientation, disability, physical appearance, body size, race or religion. - __All communication should be appropriate__ for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate. - __Be kind to others__. Do not insult or put down other GitHub users. - Participants asked to stop any inappropriate behaviour are expected to comply immediately. People violating these rules may be blocked at the discretion of the mantainers. ================================================ FILE: Dockerfile ================================================ # Container image that runs your code FROM alpine:3.10 RUN apk add --no-cache --no-progress curl jq # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh # Code file to execute when the docker container starts up (`entrypoint.sh`) ENTRYPOINT ["/entrypoint.sh"] ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2019 Sergio Pintaldi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # GitHub Action for Assign to One Project [![Docker Cloud Automated build](https://img.shields.io/docker/cloud/automated/srggrs/assign-one-project-github-action)][docker] [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/srggrs/assign-one-project-github-action)][docker] [![Docker Pulls](https://img.shields.io/docker/pulls/srggrs/assign-one-project-github-action)][docker] [![GitHub license](https://img.shields.io/github/license/srggrs/assign-one-project-github-action.svg)][license] ![Latest Version](https://img.shields.io/github/v/release/srggrs/assign-one-project-github-action?color=orange&label=latest%20release) [docker]: https://hub.docker.com/r/srggrs/assign-one-project-github-action [license]: https://github.com/srggrs/assign-one-project-github-action/blob/master/LICENSE Automatically add an issue or pull request to specific [GitHub Project](https://help.github.com/articles/about-project-boards/) when you __create__ and/or __label__ them. By default, the issues are assigned to the __`To do`__ column and the pull requests to the __`In progress`__ one, so make sure you have those columns in your project dashboard. But the workflow __allowed you to specify the column name as input__, so you can assign the issues/PRs based on a set of conditions to a specific column of a specific project. ## Latest features: * included `issue_comment` as trigger for this action. * added project pagination for searching 100+ GitHub projects. ## Acknowledgment & Motivations This action has been modified from the original action from [masutaka](https://github.com/masutaka/github-actions-all-in-one-project). I needed to fix it as the original docker container would not build. Also I think the GitHub Action syntax changed a bit. I would like to thank @SunRunAway for adding the labelling functionality and custom column input. ## Inputs ### `project` **Required** The url of the project to be assigned to. ### `column_name` The column name of the project, defaults to `'To do'` for issues and `'In progress'` for pull requests. ## Example usage Examples of action: ### Repository project ```yaml name: Auto Assign to Project(s) on: issues: types: [opened, labeled] pull_request: types: [opened, labeled] issue_comment: types: [created] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: assign_one_project: runs-on: ubuntu-latest name: Assign to One Project steps: - name: Assign NEW issues and NEW pull requests to project 2 uses: srggrs/assign-one-project-github-action@1.2.1 if: github.event.action == 'opened' with: project: 'https://github.com/srggrs/assign-one-project-github-action/projects/2' - name: Assign issues and pull requests with `bug` label to project 3 uses: srggrs/assign-one-project-github-action@1.2.1 if: | contains(github.event.issue.labels.*.name, 'bug') || contains(github.event.pull_request.labels.*.name, 'bug') with: project: 'https://github.com/srggrs/assign-one-project-github-action/projects/3' column_name: 'Labeled' ``` #### __Notes__ Be careful of using the conditions above (opened and labeled issues/PRs) because in such workflow, if the issue/PR is opened and labeled at the same time, it will be assigned to __both__ projects! You can use any combination of conditions. For example, to assign new issues or issues labeled with 'mylabel' to a project column, use: ```yaml ... if: | github.event_name == 'issues' && ( github.event.action == 'opened' || contains(github.event.issue.labels.*.name, 'mylabel') ) ... ``` ### Organisation or User project Generate a token from the Organisation settings or User Settings and add it as a secret in the repository secrets as `MY_GITHUB_TOKEN` ```yaml name: Auto Assign to Project(s) on: issues: types: [opened, labeled] pull_request_target: types: [opened, labeled] issue_comment: types: [created] env: MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} jobs: assign_one_project: runs-on: ubuntu-latest name: Assign to One Project steps: - name: Assign NEW issues and NEW pull requests to project 2 uses: srggrs/assign-one-project-github-action@1.2.1 if: github.event.action == 'opened' with: project: 'https://github.com/srggrs/assign-one-project-github-action/projects/2' - name: Assign issues and pull requests with `bug` label to project 3 uses: srggrs/assign-one-project-github-action@1.2.1 if: | contains(github.event.issue.labels.*.name, 'bug') || contains(github.event.pull_request.labels.*.name, 'bug') with: project: 'https://github.com/srggrs/assign-one-project-github-action/projects/3' column_name: 'Labeled' ``` ## [Change Log](./CHANGELOG.md) Please refer to the list of changes [here](./CHANGELOG.md) ================================================ FILE: action.yml ================================================ # action.yml name: 'Assign to One Project' description: 'Assign new/labeled Issue or Pull Request to a specific project dashboard column' author: srggrs inputs: project: description: 'The url of the project to be assigned to.' required: true column_name: description: 'The column name of the project, defaults to "To do" for issues and "In progress" for pull requests.' required: false runs: using: 'docker' image: 'Dockerfile' args: - ${{ inputs.project }} - ${{ inputs.column_name }} branding: icon: 'box' color: 'red' ================================================ FILE: entrypoint.sh ================================================ #!/bin/sh -l PROJECT_URL="$INPUT_PROJECT" if [ -z "$PROJECT_URL" ]; then echo "Project input variable is not defined." >&2 exit 1 fi get_project_type() { _PROJECT_URL="$1" case "$_PROJECT_URL" in https://github.com/orgs/*) echo "org" ;; https://github.com/users/*) echo "user" ;; https://github.com/*/projects/*) echo "repo" ;; *) echo "Invalid Project URL: '$_PROJECT_URL' . Please pass a valid Project URL in the project input variable" >&2 exit 1 ;; esac unset _PROJECT_URL } get_next_url_from_headers() { _HEADERS_FILE=$1 grep -i '^link' "$_HEADERS_FILE" | tr ',' '\n'| grep \"next\" | sed 's/.*<\(.*\)>.*/\1/' } find_project_id() { _PROJECT_TYPE="$1" _PROJECT_URL="$2" case "$_PROJECT_TYPE" in org) _ORG_NAME=$(echo "$_PROJECT_URL" | sed -e 's@https://github.com/orgs/\([^/]\+\)/projects/[0-9]\+@\1@') _ENDPOINT="https://api.github.com/orgs/$_ORG_NAME/projects?per_page=100" ;; user) _USER_NAME=$(echo "$_PROJECT_URL" | sed -e 's@https://github.com/users/\([^/]\+\)/projects/[0-9]\+@\1@') _ENDPOINT="https://api.github.com/users/$_USER_NAME/projects?per_page=100" ;; repo) _ENDPOINT="https://api.github.com/repos/$GITHUB_REPOSITORY/projects?per_page=100" ;; esac _NEXT_URL="$_ENDPOINT" while : ; do _PROJECTS=$(curl -s -X GET -u "$GITHUB_ACTOR:$TOKEN" --retry 3 \ -H 'Accept: application/vnd.github.inertia-preview+json' \ -D /tmp/headers \ "$_NEXT_URL") _PROJECTID=$(echo "$_PROJECTS" | jq -r ".[] | select(.html_url == \"$_PROJECT_URL\").id") _NEXT_URL=$(get_next_url_from_headers '/tmp/headers') if [ "$_PROJECTID" != "" ]; then echo "$_PROJECTID" elif [ "$_NEXT_URL" == "" ]; then echo "No project was found." >&2 exit 1 fi done unset _PROJECT_TYPE _PROJECT_URL _ORG_NAME _USER_NAME _ENDPOINT _PROJECTS _PROJECTID _NEXT_URL } find_column_id() { _PROJECT_ID="$1" _INITIAL_COLUMN_NAME="$2" _COLUMNS=$(curl -s -X GET -u "$GITHUB_ACTOR:$TOKEN" --retry 3 \ -H 'Accept: application/vnd.github.inertia-preview+json' \ "https://api.github.com/projects/$_PROJECT_ID/columns") echo "$_COLUMNS" | jq -r ".[] | select(.name == \"$_INITIAL_COLUMN_NAME\").id" unset _PROJECT_ID _INITIAL_COLUMN_NAME _COLUMNS } PROJECT_TYPE=$(get_project_type "${PROJECT_URL:? required this environment variable}") if [ "$PROJECT_TYPE" = org ] || [ "$PROJECT_TYPE" = user ]; then if [ -z "$MY_GITHUB_TOKEN" ]; then echo "MY_GITHUB_TOKEN not defined" >&2 exit 1 fi TOKEN="$MY_GITHUB_TOKEN" # It's User's personal access token. It should be secret. else if [ -z "$GITHUB_TOKEN" ]; then echo "GITHUB_TOKEN not defined" >&2 exit 1 fi TOKEN="$GITHUB_TOKEN" # GitHub sets. The scope in only the repository containing the workflow file. fi INITIAL_COLUMN_NAME="$INPUT_COLUMN_NAME" if [ -z "$INITIAL_COLUMN_NAME" ]; then # assing the column name by default INITIAL_COLUMN_NAME='To do' if [ "$GITHUB_EVENT_NAME" == "pull_request" ] || [ "$GITHUB_EVENT_NAME" == "pull_request_target" ]; then echo "changing column name for PR event" INITIAL_COLUMN_NAME='In progress' fi fi PROJECT_ID=$(find_project_id "$PROJECT_TYPE" "$PROJECT_URL") INITIAL_COLUMN_ID=$(find_column_id "$PROJECT_ID" "${INITIAL_COLUMN_NAME:? required this environment variable}") if [ -z "$INITIAL_COLUMN_ID" ]; then echo "Column name '$INITIAL_COLUMN_ID' is not found." >&2 exit 1 fi case "$GITHUB_EVENT_NAME" in issues|issue_comment) ISSUE_ID=$(jq -r '.issue.id' < "$GITHUB_EVENT_PATH") # Add this issue to the project column curl -s -X POST -u "$GITHUB_ACTOR:$TOKEN" --retry 3 \ -H 'Accept: application/vnd.github.inertia-preview+json' \ -d "{\"content_type\": \"Issue\", \"content_id\": $ISSUE_ID}" \ "https://api.github.com/projects/columns/$INITIAL_COLUMN_ID/cards" ;; pull_request|pull_request_target) PULL_REQUEST_ID=$(jq -r '.pull_request.id' < "$GITHUB_EVENT_PATH") # Add this pull_request to the project column curl -s -X POST -u "$GITHUB_ACTOR:$TOKEN" --retry 3 \ -H 'Accept: application/vnd.github.inertia-preview+json' \ -d "{\"content_type\": \"PullRequest\", \"content_id\": $PULL_REQUEST_ID}" \ "https://api.github.com/projects/columns/$INITIAL_COLUMN_ID/cards" ;; *) echo "Nothing to be done on this action: '$GITHUB_EVENT_NAME'" >&2 exit 1 ;; esac