This file contains hidden or 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
#!/bin/bash | |
set -euo pipefail | |
for bot in pre-commit-ci dependabot; do | |
for pr in $(gh pr list --author ${bot}[bot]|awk '{print $1}'); do | |
# Depending on branch protection rules, an approving review may be required | |
gh pr review --approve "$pr" | |
# Merge via rebase if and when checks complete successfully |
This file contains hidden or 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
#!/bin/bash | |
if [ $# -ne 1 ]; | |
then echo "Please specify a date" | |
exit 1 | |
fi | |
set -e | |
date=$(date +%Y-%m-%d -d "$1") | |
echo Showing commits on $date |
This file contains hidden or 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
# Maintainer: acxz <akashpatel2008 at yahoo dot com> | |
# Contributor: Sven Schneider <[email protected]> | |
pkgname=orocos-kdl-python | |
_dir=orocos_kinematics_dynamics | |
_pkgname=python_orocos_kdl | |
pkgver=1.5.1 | |
pkgrel=1 | |
pkgdesc="The Kinematics and Dynamics Library is a framework for modelling and computation of kinematic chains (Python binding)" | |
arch=('i686' 'x86_64') |