Create a branch and switch:
- name: Close issue uses: actions/github-script@v7 with: script: | github.rest.issues.update( owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, state: 'closed', state_reason: 'completed' )
git config --global credential.helper cache # Or use libsecret on GNOME: sudo apt install -y libsecret-1-0 libsecret-1-dev cd /usr/share/doc/git/contrib/credential/libsecret sudo make git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
Disclaimer: This article is for Ubuntu 20.04, 22.04, and later versions. Commands may vary slightly for older distributions.
: A dedicated command-line tool that brings GitHub-specific features (like Pull Requests, Issues, and Releases) directly to your terminal.
name: Remote Ubuntu UPD Automation
Create a branch and switch:
- name: Close issue uses: actions/github-script@v7 with: script: | github.rest.issues.update( owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, state: 'closed', state_reason: 'completed' ) github for ubuntu upd
git config --global credential.helper cache # Or use libsecret on GNOME: sudo apt install -y libsecret-1-0 libsecret-1-dev cd /usr/share/doc/git/contrib/credential/libsecret sudo make git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret Create a branch and switch: - name: Close
Disclaimer: This article is for Ubuntu 20.04, 22.04, and later versions. Commands may vary slightly for older distributions. github for ubuntu upd
: A dedicated command-line tool that brings GitHub-specific features (like Pull Requests, Issues, and Releases) directly to your terminal.
name: Remote Ubuntu UPD Automation