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
branches: release | |
plugins: | |
- "@semantic-release/commit-analyzer" | |
- "@semantic-release/release-notes-generator" | |
- [ | |
"@semantic-release/changelog", | |
changelogTitle: "# Changelog | |
All notable changes to this project will be documented in this file. |
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
#!/usr/bin/python3 | |
"""Update UNIX-like system user profile picture with its GitHub account's one | |
This script assumes same system and platform username, but a different one can be declared. | |
It downloads target GitHub account's picture and set it up to current system user | |
""" | |
import os | |
import requests | |
import configparser |