sh 批量为Heroku应用添加协作者

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 批量为Heroku应用添加协作者相关的知识,希望对你有一定的参考价值。

#!/bin/bash
set -e # exit entire script if something is wrong

if [ -z "$1" ]
  then
    echo "Please supply the Heroku app name"
    exit 0
fi

array=( user-1@example.com user-2@example.com )

for i in "${array[@]}"
do
  heroku access:add $i --app $1
done

以上是关于sh 批量为Heroku应用添加协作者的主要内容,如果未能解决你的问题,请参考以下文章

使用 github cli 将外部协作者添加到组织存储库

向我的免费 G​​itHub 帐户添加协作者?

向一个GitHub repository添加协作者

GitHub创建项目并添加协作者

sh 在您的所有应用上更新heroku multibuildpack

sh 从bash终端删除所有heroku应用程序 - 无需脚本文件